Building a Serverless DynamoDB MCP: Making Your AI Talk to Your Database Have you ever wished you could just ask your AI assistant to query your database? Something like: "Hey Kiro, show me all active users from my DynamoDB table" or "Add a new user named Alice with email alice@example.com to the Users table" Well, that's exactly what we're building today! 🚀 The Big Picture: What Are We Building? We're creating a serverless MCP (Model Context Protocol) backend on AWS that enables AI assistants like Kiro to interact with DynamoDB tables conversationally. Think of it as giving Kiro a direct, secure phone line to your DynamoDB database. Here's what makes this special: 10 DynamoDB operations exposed as natural language tools Completely serverless - runs on AWS Lambda Secure by default - AWS IAM authentication with SigV4 signing Zero local dependencies - all the heavy lifting happens in the cloud Self-configuring - tools are discovered dynamically Wait, What's MCP?…