An MCP (Model Context Protocol) server that connects AI assistants to Microsoft SQL Server databases. Enables AI tools like GitHub Copilot, Cursor, Cline, Claude Desktop, and Claude Code to explore database schemas and execute read-only queries safely.
- 29 built-in tools for comprehensive database analysis and management
- Read-only by design — uses
db_datareaderrole, blocks all destructive SQL - SQL injection protection — AST-based query validation + keyword blocklist
- Automatic row limits — prevents memory overflow with smart
TOP Ninjection - AI-friendly errors — structured error responses with actionable suggestions
- Schema caching — 1-hour TTL metadata cache reduces redundant DB calls
- Unicode/Vietnamese support — full NVARCHAR UTF-8 passthrough
- Dual transport —
stdio(default) for local AI tools,HTTP/SSEfor web clients - Data analysis — table statistics, index information, and column distribution
- Data export — export table data to JSON or CSV format
- Complete schema understanding — views, constraints, stored procedures, and server info
- Security auditing — user management and permission analysis
- Enhanced profiling — detailed column distribution with pattern recognition
- Dependency mapping — full dependency analysis for tables and columns
- Schema management — comprehensive schema organization and analysis
- Data quality validation — integrity checks and comprehensive profiling
- Documentation automation — generate schema documentation and ER diagrams
| Tool | Description |
|---|---|
list_databases |
List all user-accessible databases on the SQL Server instance |
list_schemas |
List all schemas in database with table and view counts |
list_tables |
List tables and views in a specific schema |
| Tool | Description |
|---|---|
describe_table |
Get column details: name, type, nullable, PK, description |
get_table_relationships |
Get foreign key mappings for a table (guides JOINs) |
search_tables |
Search tables/columns/descriptions by keyword |
get_view_definition |
Get SQL definition of a view along with referenced tables |
list_constraints |
List all constraints (PK, FK, Unique, Check) for a table |
| Tool | Description |
|---|---|
get_table_statistics |
Get table statistics including row count, size, and timestamps |
get_table_indexes |
Get all indexes for a table with column details |
analyze_table |
Analyze table data to get distribution statistics for each column |
get_column_distribution |
Get detailed distribution statistics for a specific column with pattern recognition |
list_stored_procedures |
List all stored procedures and functions with parameters |
get_procedure_definition |
Get full SQL definition of a stored procedure or function |
| Tool | Description |
|---|---|
get_table_dependencies |
Get full dependency map for a table (what it depends on and what depends on it) |
get_column_usage |
Get detailed usage information for a specific column (views, procedures, foreign keys, indexes) |
| Tool | Description |
|---|---|
validate_data_integrity |
Validate data integrity for a table (FK violations, duplicates, null violations) |
get_data_profile |
Get comprehensive data profile for a table including quality metrics |
| Tool | Description |
|---|---|
generate_schema_documentation |
Generate comprehensive schema documentation with tables, views, columns, and relationships |
create_entity_relationship_diagram |
Create entity relationship diagram in Mermaid, PlantUML, or DOT format |
generate_api_documentation |
Generate REST API documentation from database schema with inferred endpoints and schemas |
| Tool | Description |
|---|---|
create_migration_scripts |
Generate migration scripts for schema changes with up/down migrations |
compare_schemas |
Compare two schemas to identify differences in tables, views, and procedures |
| Tool | Description |
|---|---|
get_server_info |
Get SQL Server information including version, edition, and status |
| Tool | Description |
|---|---|
list_users |
List all database users and their roles |
get_user_permissions |
Get detailed permissions for a specific user |
| Tool | Description |
|---|---|
execute_read_query |
Execute a validated read-only SELECT query |
export_table_data |
Export table data to JSON or CSV format |
clear_cache |
Clear the metadata cache to force fresh data |
git clone https://github.com/az-coder-123/sql-server-mcp.git
cd sql-server-mcp
npm install
npm run buildCopy the environment template and fill in your SQL Server credentials:
cp .env.example .envEdit .env:
DB_HOST=localhost
DB_PORT=1433
DB_NAME=MyDatabase
DB_USER=readonly_user
DB_PASSWORD=your_password
DB_ENCRYPT=true
DB_TRUST_SERVER_CERT=falseImportant: The
DB_USERshould have thedb_datareaderrole only. The server blocks all write operations at the code level, but defense-in-depth at the database level is strongly recommended.
# stdio mode (default — for AI tools)
npm start
# Development mode (with hot reload)
npm run dev
# HTTP/SSE mode (for web clients)
MCP_TRANSPORT=http npm startCreate .vscode/mcp.json in your project:
{
"servers": {
"sql-server-mcp": {
"type": "stdio",
"command": "node",
"args": ["/path/to/sql-server-mcp/dist/index.js"],
"env": {
"DB_SERVER": "localhost",
"DB_DATABASE": "MyDatabase",
"DB_USER": "readonly_user",
"DB_PASSWORD": "${input:dbPassword}"
}
}
}
}VS Code will securely prompt for the password at runtime via
${input:dbPassword}.
Create .cursor/mcp.json:
{
"mcpServers": {
"sql-server-mcp": {
"command": "node",
"args": ["/path/to/sql-server-mcp/dist/index.js"],
"env": {
"DB_SERVER": "localhost",
"DB_DATABASE": "MyDatabase",
"DB_USER": "readonly_user",
"DB_PASSWORD": "your_password"
}
}
}
}- Open Cline settings in VS Code
- Go to MCP Servers → Add Server
- Select Command (stdio)
- Enter:
- Command:
node - Args:
/path/to/sql-server-mcp/dist/index.js - Env:
DB_SERVER=localhost,DB_DATABASE=MyDatabase,DB_USER=readonly_user,DB_PASSWORD=your_password
- Command:
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %AppData%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"sql-server-mcp": {
"command": "node",
"args": ["/path/to/sql-server-mcp/dist/index.js"],
"env": {
"DB_SERVER": "localhost",
"DB_DATABASE": "MyDatabase",
"DB_USER": "readonly_user",
"DB_PASSWORD": "your_password"
}
}
}
}claude --mcp-config ./mcp-config.json "Show me all tables in database"Where mcp-config.json uses the same mcpServers format as Claude Desktop above.
All settings are configured via environment variables (or .env file):
| Variable | Default | Description |
|---|---|---|
DB_HOST |
localhost |
SQL Server hostname or IP |
DB_PORT |
1433 |
SQL Server port |
DB_NAME |
master |
Default database |
DB_USER |
— | SQL Server login username |
DB_PASSWORD |
— | SQL Server login password |
DB_ENCRYPT |
true |
Enable TLS encryption |
DB_TRUST_SERVER_CERT |
false |
Trust self-signed certificates |
MCP_TRANSPORT |
stdio |
Transport mode: stdio or http |
MCP_HTTP_PORT |
3000 |
HTTP server port (when MCP_TRANSPORT=http) |
QUERY_ROW_LIMIT |
100 |
Max rows returned per query (auto-injected) |
QUERY_TIMEOUT_MS |
30000 |
Query timeout in milliseconds |
PAYLOAD_MAX_BYTES |
1048576 |
Max response payload size (1MB) |
SCHEMA_CACHE_TTL_SECONDS |
3600 |
How long schema metadata is cached |
This server is designed for read-only database access with multiple layers of protection:
- Database-level: Uses a
db_datareader-only account withreadOnlyIntentconnection flag - Query validation: AST-based parsing via
node-sql-parser(with regex fallback for T-SQL edge cases) - Keyword blocklist:
INSERT,UPDATE,DELETE,DROP,EXEC,TRUNCATE,ALTER,CREATE,GRANT,REVOKE,MERGEand more - Multi-statement blocking: Semicolons outside string literals are rejected
- Row limiting: Automatic
TOP Ninjection prevents memory exhaustion - Payload truncation: Responses exceeding 1MB are truncated with a warning
- Connection timeout: 30-second hard timeout on all queries
sql-server-mcp/
├── src/
│ ├── index.ts # Server entry point, tool registration, transport
│ ├── config/database.ts # Connection pool, env vars
│ ├── tools/
│ │ ├── schemaTools.ts # list_databases, list_tables, describe_table, relationships, search
│ │ ├── schemaManagementTools.ts # list_schemas
│ │ ├── queryTools.ts # execute_read_query
│ │ ├── tableStatisticsTools.ts # get_table_statistics
│ │ ├── tableIndexTools.ts # get_table_indexes
│ │ ├── tableAnalysisTools.ts # analyze_table
│ │ ├── columnTools.ts # get_column_distribution
│ │ ├── storedProcedureTools.ts # list_stored_procedures
│ │ ├── exportTools.ts # export_table_data
│ │ ├── viewTools.ts # get_view_definition
│ │ ├── constraintTools.ts # list_constraints
│ │ ├── serverInfoTools.ts # get_server_info
│ │ ├── procedureDefinitionTools.ts # get_procedure_definition
│ │ ├── userTools.ts # list_users, get_user_permissions
│ │ ├── dependencyTools.ts # get_table_dependencies
│ │ ├── usageTools.ts # get_column_usage
│ │ ├── dataIntegrityTools.ts # validate_data_integrity
│ │ ├── dataProfileTools.ts # get_data_profile
│ │ ├── documentationTools.ts # generate_schema_documentation
│ │ ├── apiDocumentationTools.ts # generate_api_documentation
│ │ ├── migrationTools.ts # create_migration_scripts
│ │ ├── schemaComparisonTools.ts # compare_schemas
│ │ └── diagramTools.ts # create_entity_relationship_diagram
│ ├── types/index.ts # Shared TypeScript interfaces
│ ├── utils/
│ │ ├── sqlValidator.ts # AST + regex query validation, TOP injection
│ │ └── errorMapper.ts # SQL error code → AI-friendly messages
│ └── cache/schemaCache.ts # In-memory TTL cache
├── tests/ # Unit tests (vitest)
├── dist/ # Compiled output (npm run build)
├── .env.example # Environment variable template
└── package.json
# Install dependencies
npm install
# Run in dev mode (hot reload)
npm run dev
# Run tests
npm test
# Build for production
npm run buildISC