sql-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sql-mcpWhat are the top 5 products by sales this year?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
sql-mcp
sql-mcp
An MCP server for read-only SQL Server access, plus a chat app (Express + React) that lets you ask questions about your databases in plain English.
Two things live in this repo:
An MCP server (src/index.ts) exposing
query,list_tables,describe_table, andlist_databasestools — usable from Claude Desktop, Claude Code, or any other MCP client.A standalone chat app (src/server.ts + web/) that drives that same MCP server with an LLM (Gemini, with free OpenRouter models as a fallback), so you can just type a question instead of writing SQL.
See ARCHITECTURE.md for how it's built and why (in particular, why it talks to SQL
Server via sqlcmd instead of a normal Node driver).
Prerequisites
Node.js 18+ (20+ recommended)
sqlcmdonPATH— ships with the ODBC Driver 17 (or later) for SQL Server Client SDKA SQL Server instance reachable from this machine (Shared Memory, Named Pipes, or TCP —
sqlcmdhandles whichever is available; no manual protocol configuration needed)
Related MCP server: mssql-mcp
Setup
Install dependencies:
npm install cd web && npm install && cd ..Create a
.envfile in the project root:SQL_SERVER=your-server-name SQL_DATABASE=your-database-name SQL_USER=sa SQL_PASSWORD=your-password GEMINI_API_KEY=your-gemini-api-keyGEMINI_API_KEYis required for the chat app (get one from Google AI Studio); the MCP server on its own doesn't need it.Build:
npm run build
Running
MCP server (for use with an MCP client like Claude Desktop):
npm start # runs the compiled dist/index.js
npm run dev # runs src/index.ts directly via tsx, no build stepChat app (two terminals):
npm run server # backend, http://localhost:3001
cd web && npm run dev # frontend, http://localhost:5173Quick connection sanity check:
npm run test-connectionMCP tools
Tool | Description |
| Run a read-only |
| List all tables and views. |
| List a table's columns, types, and nullability. |
| List the configured database aliases (see below). |
Every tool takes an optional database argument to target a specific configured database.
Multiple databases
By default there's one database, aliased app, configured via SQL_SERVER/SQL_DATABASE/SQL_USER/SQL_PASSWORD. To add more:
SQL_CONNECTIONS=idp,billing
SQL_IDP_SERVER=...
SQL_IDP_DATABASE=...
SQL_IDP_USER=...
SQL_IDP_PASSWORD=...
SQL_BILLING_SERVER=...
# etc.Each alias in SQL_CONNECTIONS needs its own SQL_<ALIAS>_SERVER / _DATABASE / _USER / _PASSWORD set. The chat UI's database picker and the list_databases tool pick these up automatically.
Optional: OpenRouter fallback
If GEMINI_API_KEY hits its rate limit, the chat backend can fall back to free models on
OpenRouter:
OPENROUTER_API_KEY=your-openrouter-key
# OPENROUTER_MODELS=openai/gpt-oss-20b:free,nvidia/nemotron-3-nano-30b-a3b:free,google/gemma-4-31b-it:freeLeaving OPENROUTER_API_KEY unset disables this fallback entirely — Gemini alone is used.
You can also override which Gemini models are tried, and in what order:
# GEMINI_MODELS=gemini-flash-latest,gemini-flash-lite-latest,gemini-2.5-flash-lite,gemini-pro-latestScripts
Script | What it does |
| Compile TypeScript ( |
| Run the compiled MCP server |
| Run the MCP server from source (no build) |
| Build, then run the chat backend on port 3001 |
| Verify the database connection and print the table list |
Security notes
The
querytool only allowsSELECT/WITHstatements — noINSERT/UPDATE/DELETE/DROP/etc., enforced in src/db.ts..envis gitignored. Never commit real credentials or API keys.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityDmaintenanceA read-only MCP server that enables users to query Databricks SQL, browse metadata, and monitor Delta Lake tables. It also supports tracking Databricks Jobs, DLT Pipelines, and cluster metrics through natural language interfaces.254MIT
- AlicenseAqualityCmaintenanceRead-only MCP server for Microsoft SQL Server that retrieves connection details from AWS Secrets Manager, enabling database exploration and querying via natural language.1210MIT
- Alicense-qualityCmaintenanceRead-only SQL Server MCP server enabling safe database queries, table listing, and schema inspection with built-in security protections.MIT
- Alicense-qualityAmaintenanceSecurity-first, read-only MCP server for Microsoft SQL Server, enabling safe natural-language querying of databases.17MIT
Related MCP Connectors
Official Microsoft MCP Server to query Microsoft Entra data using natural language
Read-only MCP server for ClassQuill, a tutoring-business-management platform.
GibsonAI MCP server: manage your databases with natural language
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Gowsi31/sql-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server