What problem does it solve? Connecting AI agents to relational databases usually requires storing credentials server-side or writing custom integration code. This Skill runs a stateless Spring Boot MCP server where the AI client passes connection parameters with every request, so agents can inspect schemas and execute SQL without any credential persistence. ## Core Features & Use Cases - Schema Exploration: List tables, describe columns, and inspect indexes across six database types (MySQL, PostgreSQL, SQLite, SQL Server, Oracle, H2). - SQL Execution: Run read-only queries with row limits via executeQuery, or perform INSERT, UPDATE, DELETE, and DDL operations via executeUpdate. - Zero Credential Storage: Connection pools are cached in memory with a 5-minute TTL and never persisted to disk. - Use Case: Ask your AI assistant to compare user counts between a dev MySQL database and a production PostgreSQL database—the agent calls executeQuery twice with different connection parameters and reports the difference. ## Quick Start Start the server with ./mvnw spring-boot:run, add http://localhost:8088/sse to your Claude Desktop MCP configuration, then ask the AI to list all tables in your local MySQL database.