Skip to main content
Glama
dkp5897

SQL Server MCP Server

by dkp5897

SQL Server MCP Server

A Model Context Protocol (MCP) server for SQL Server — built for development debugging and multi-database data repair. Connects to Antigravity (the AI agent) so you can inspect schemas, run queries, and diagnose data problems across multiple databases directly from your IDE chat.


🚀 Setup & Configuration

You can configure single or multiple SQL Server databases directly using any of these 3 clean methods:

Method 1: Using a connections.json File (Easiest & Cleanest!) 🌟

Create a connections.json file in your workspace directory (or set CONNECTIONS_FILE in env pointing to your JSON file path). Write your database connections in clean JSON array format without any escaping:

[
  {
    "name": "sweet-shop",
    "label": "PradeepSweetShop Dev",
    "server": "localhost\\SQLEXPRESS",
    "database": "PradeepSweetShopDb",
    "user": "sa",
    "password": "your_password"
  },
  {
    "name": "ecommerce",
    "label": "ECommerce Dev",
    "server": "localhost\\SQLEXPRESS",
    "database": "ECommerceDB",
    "user": "sa",
    "password": "your_password"
  }
]

And configure mcp_config.json:

{
  "mcpServers": {
    "sql-server-mcp": {
      "command": "npx",
      "args": ["-y", "@dkcodingcenter/sql-server-mcp"],
      "env": {
        "CONNECTIONS_FILE": "C:/path/to/connections.json"
      }
    }
  }
}

Method 2: Environment Variable (DB_CONNECTIONS JSON Array)

Pass a JSON array string directly in DB_CONNECTIONS:

{
  "mcpServers": {
    "sql-server-mcp": {
      "command": "npx",
      "args": ["-y", "@dkcodingcenter/sql-server-mcp"],
      "env": {
        "DB_CONNECTIONS": "[{\"name\":\"sweet-shop\",\"label\":\"PradeepSweetShop Dev\",\"server\":\"localhost\\\\SQLEXPRESS\",\"database\":\"PradeepSweetShopDb\",\"user\":\"sa\",\"password\":\"your_password\"},{\"name\":\"ecommerce\",\"label\":\"ECommerce Dev\",\"server\":\"localhost\\\\SQLEXPRESS\",\"database\":\"ECommerceDB\",\"user\":\"sa\",\"password\":\"your_password\"}]"
      }
    }
  }
}

Method 3: Single Database Configuration

{
  "mcpServers": {
    "sql-server-mcp": {
      "command": "npx",
      "args": ["-y", "@dkcodingcenter/sql-server-mcp"],
      "env": {
        "DB_SERVER": "localhost",
        "DB_NAME": "PradeepSweetShopDb",
        "DB_USER": "sa",
        "DB_PASSWORD": "your_password"
      }
    }
  }
}

Related MCP server: MSSQL MCP Server

🛠️ Available Tools (17 total)

Connection Management

Tool

Description

sql_list_connections

List all loaded SQL Server connection profiles and see which one is active

sql_switch_connection

Switch default active connection to another loaded profile by name

sql_add_connection

Dynamically add or update a named connection profile during chat session

sql_remove_connection

Remove a connection profile

Query Execution

Tool

Description

sql_run_query

Run a SELECT query (accepts optional connection name parameter)

sql_run_write

Run INSERT/UPDATE/DELETE/DDL — shows preview first, requires confirm=true to execute

Schema Inspection

Tool

Description

sql_list_tables

List all tables with row counts

sql_inspect_table

Full table details: columns, PKs, FKs, indexes

sql_list_stored_procs

List all stored procedures

sql_get_stored_proc_def

Get stored procedure source code

Data Diagnostics

Tool

Description

sql_find_data

Search for a value across all columns in a table

sql_check_foreign_keys

Find orphaned records / FK violations

sql_count_and_sample

Row count + sample rows from a table

sql_check_nulls

Find NULL values in specified columns

sql_compare_counts

Compare parent/child table counts to find gaps

sql_diagnose_issue

Full diagnostic report on a table

sql_get_query_plan

Get execution plan for a query


🔐 Permission Model

Query Type

Behaviour

SELECT

Runs immediately, no confirmation needed

INSERT / UPDATE / DELETE

Shows preview first. Must call again with confirm: true

DROP TABLE / ALTER / CREATE

Shows preview first. Must call again with confirm: true

DROP DATABASE / xp_cmdshell / BULK INSERT

Always blocked, cannot be executed


💡 Example Questions to Ask the Agent

  • "List all configured SQL connections"

  • "Switch SQL connection to ecommerce"

  • "Run a query SELECT TOP 5 * FROM Payments on connection ecommerce"

  • "Compare row counts between Products and Categories in sweet-shop"

  • "Run a full diagnostic on the Orders table"


📦 Publishing to npm

To publish updates to npm:

npm login
npm publish --access public
Install Server
A
license - permissive license
A
quality
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    A
    quality
    C
    maintenance
    Enables AI assistants to interact with Microsoft SQL Server databases through query execution, schema discovery, CRUD operations, stored procedures, and data export with built-in safety controls.
    18
    Apache 2.0
  • A
    license
    -
    quality
    D
    maintenance
    Enables AI assistants to interact with Microsoft SQL Server databases through a standardized interface. Supports executing SQL queries, browsing database schemas, and viewing table data with flexible authentication options for both local and Azure SQL databases.
    5
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    Enables AI assistants to interact with Microsoft SQL Server databases via introspection and query tools. Supports single or multiple databases with read-only mode by default and an optional write capability.
    373
    4
    MIT
  • F
    license
    -
    quality
    C
    maintenance
    Enables AI assistants to interact with SQL Server databases through tools for connectivity, schema exploration, SQL queries, and OEE metrics analysis.

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

Latest Blog Posts

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/dkp5897/sql-server-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server