AI-Powered Natural Language to SQL Chatbot.
A conversational agent that turns plain-English questions into production-grade SQL queries — built on Claude API with Model Context Protocol (MCP) for live database connectivity. Enables non-technical teams to query operational data in natural language with safety guardrails and schema-aware responses.
FROM customers c JOIN orders o
ON c.id = o.customer_id
WHERE o.created_at >= '2025-Q4'
GROUP BY c.name
ORDER BY revenue DESC LIMIT 5;