Database Query Executor
STDIOMCP server that executes queries on databases through SSE communication.
MCP server that executes queries on databases through SSE communication.
DBMCP is a MCP (Model-Client-Protocol) server that allows you to execute queries on databases. This server communicates with clients through SSE (Server-Sent Events), executes queries on databases, and returns the results.
Set environment variables in the .env
file such as:
MSSQL_HOST=MSSQL_server_address
MSSQL_USER=username
MSSQL_PASSWORD=password
MSSQL_PORT=1433
docker-compose up -d # or docker-compose up --watch # Hot Reloading for Dev
uv sync # or pip install -r requirements.txt
(dbmcp) python server.py
Add following json to your MCP client (Claude Desktop, Cursor, ...)
{ "mcpServers": { "dbmcp": { "url": "http://localhost:8080/sse" } } }