@ggball/mcp-sqlserver
v1.0.0
Published
SQL Server MCP Server - Connect and query Microsoft SQL Server databases via MCP
Maintainers
Readme
SQL Server MCP Server (Node.js/TypeScript)
A Model Context Protocol (MCP) server for connecting to and querying Microsoft SQL Server databases, built with TypeScript and Node.js.
What is MCP?
MCP (Model Context Protocol) is an open protocol that allows AI assistants to securely and standardly interact with external data sources and tools. Through MCP servers, AI assistants can:
- Directly connect to databases to execute queries
- Call external APIs to get real-time data
- Access file systems and cloud storage
- Execute custom business logic
MCP architecture contains two core components:
- MCP Client: Built into AI assistants (like Claude Desktop), responsible for communicating with servers
- MCP Server: Independent processes that provide specific tools and data access capabilities
Features
- List all available databases
- List all tables in a specific database
- Get table structure information (columns, data types, primary keys, etc.)
- Execute safe SELECT queries (limited to 1000 rows)
- Get table index information
- Get table statistics (row count, size, etc.)
- Connection pool management for improved performance
Installation
Via npm (Global Installation)
npm install -g @ggball/mcp-sqlserverAfter global installation, the mcp-sqlserver command will be available system-wide.
Via npx (Without Installation)
npx @ggball/mcp-sqlserverFrom Source
1. System Requirements
- Node.js 18.0.0 or higher
- npm 9.0.0 or higher
- SQL Server (any version)
2. Install Dependencies
npm install3. Build the Project
npm run buildConfiguration
Environment Variables
Create a .env file or set the following environment variables:
| Environment Variable | Description | Default Value |
|---------------------|-------------|---------------|
| SQLSERVER_HOST | Server address | localhost |
| SQLSERVER_PORT | Port number | 1433 |
| SQLSERVER_USER | Username | sa |
| SQLSERVER_PASSWORD | Password | (empty) |
| SQLSERVER_DATABASE | Default database | master |
| SQLSERVER_ENCRYPT | Enable encryption | true |
| SQLSERVER_TRUST_SERVER_CERTIFICATE | Trust server certificate | true |
Example .env File
SQLSERVER_HOST=localhost
SQLSERVER_PORT=1433
SQLSERVER_USER=sa
SQLSERVER_PASSWORD=YourPassword123
SQLSERVER_DATABASE=MyDatabaseUsage
Running the Server
npm startOr for development with auto-rebuild:
npm run devConfiguration in Claude Desktop
Config File Location
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Option 1: Using Global Installation (Recommended)
If you installed the package globally:
{
"mcpServers": {
"sqlserver": {
"command": "mcp-sqlserver",
"env": {
"SQLSERVER_HOST": "localhost",
"SQLSERVER_PORT": "1433",
"SQLSERVER_USER": "sa",
"SQLSERVER_PASSWORD": "YourPassword123",
"SQLSERVER_DATABASE": "MyDatabase"
}
}
}
}Option 2: Using npx
{
"mcpServers": {
"sqlserver": {
"command": "npx",
"args": ["@ggball/mcp-sqlserver"],
"env": {
"SQLSERVER_HOST": "localhost",
"SQLSERVER_PORT": "1433",
"SQLSERVER_USER": "sa",
"SQLSERVER_PASSWORD": "YourPassword123",
"SQLSERVER_DATABASE": "MyDatabase"
}
}
}
}Option 3: From Source
{
"mcpServers": {
"sqlserver": {
"command": "node",
"args": ["/path/to/mcp-sqlserver-npm/dist/index.js"],
"env": {
"SQLSERVER_HOST": "localhost",
"SQLSERVER_PORT": "1433",
"SQLSERVER_USER": "sa",
"SQLSERVER_PASSWORD": "YourPassword123",
"SQLSERVER_DATABASE": "MyDatabase"
}
}
}
}Restart Claude Desktop after configuration.
Configuration in Claude Code
Config File Location
- macOS/Linux:
~/.config/claude-code/config.json - Windows:
%APPDATA%\claude-code\config.json
Option 1: Using Global Installation (Recommended)
{
"mcpServers": {
"sqlserver": {
"command": "mcp-sqlserver",
"env": {
"SQLSERVER_HOST": "localhost",
"SQLSERVER_PORT": "1433",
"SQLSERVER_USER": "sa",
"SQLSERVER_PASSWORD": "YourPassword123",
"SQLSERVER_DATABASE": "MyDatabase"
}
}
}
}Option 2: Using npx
{
"mcpServers": {
"sqlserver": {
"command": "npx",
"args": ["@ggball/mcp-sqlserver"],
"env": {
"SQLSERVER_HOST": "localhost",
"SQLSERVER_PORT": "1433",
"SQLSERVER_USER": "sa",
"SQLSERVER_PASSWORD": "YourPassword123",
"SQLSERVER_DATABASE": "MyDatabase"
}
}
}
}Option 3: From Source
{
"mcpServers": {
"sqlserver": {
"command": "node",
"args": ["/path/to/mcp-sqlserver-npm/dist/index.js"],
"env": {
"SQLSERVER_HOST": "localhost",
"SQLSERVER_PORT": "1433",
"SQLSERVER_USER": "sa",
"SQLSERVER_PASSWORD": "YourPassword123",
"SQLSERVER_DATABASE": "MyDatabase"
}
}
}
}Restart Claude Code after configuration.
Available Tools
1. list_databases
Lists all SQL Server databases (excluding system databases).
Tool name: list_databases
Parameters: NoneExample:
List all available databases2. list_tables
Lists all tables in a specific database.
Tool name: list_tables
Parameters:
- database (required): Database name
- schema (optional): Schema name, defaults to "dbo"Example:
List all tables in MyDatabase3. describe_table
Gets table structure information including columns, data types, nullable, primary keys, etc.
Tool name: describe_table
Parameters:
- database (required): Database name
- table (required): Table name
- schema (optional): Schema name, defaults to "dbo"Example:
Show the structure of the Users table in MyDatabase4. execute_query
Executes SQL SELECT queries (only SELECT and WITH allowed, limited to 1000 rows).
Tool name: execute_query
Parameters:
- query (required): SQL query statement
- database (optional): Database name, defaults to configured databaseExample:
Query users older than 18 from the Users table5. get_table_indexes
Gets index information for a table.
Tool name: get_table_indexes
Parameters:
- database (required): Database name
- table (required): Table name
- schema (optional): Schema name, defaults to "dbo"Example:
Get index information for the Users table6. get_table_stats
Gets table statistics including row count and storage size.
Tool name: get_table_stats
Parameters:
- database (required): Database name
- table (required): Table name
- schema (optional): Schema name, defaults to "dbo"Example:
Get statistics for the Users tableUsage Examples
Scenario 1: Explore Database
You: List all available databases
Claude: [calls list_databases] ...
You: Show what tables are in MyDatabase
Claude: [calls list_tables] ...Scenario 2: Query Data
You: Query the last 10 orders from Orders table
Claude: [calls describe_table to understand table structure]
[calls execute_query to perform query] ...Scenario 3: Analyze Table Structure
You: Analyze the structure and indexes of Users table
Claude: [calls describe_table]
[calls get_table_indexes]
[calls get_table_stats] ...Security Notes
execute_querytool only allows SELECT and WITH queries- Automatically blocks statements containing dangerous keywords (DROP, DELETE, UPDATE, etc.)
- Query results are limited to 1000 rows
Development
Project Structure
mcp-sqlserver-npm/
├── src/
│ ├── index.ts # Main server entry point
│ ├── config.ts # Configuration management
│ └── connection.ts # Connection pool implementation
├── dist/ # Compiled output
├── package.json
├── tsconfig.json
└── README.mdScripts
npm run build- Compile TypeScriptnpm run dev- Compile and run in development modenpm start- Run the compiled servernpm run watch- Watch mode for TypeScript compilation
Dependencies
@modelcontextprotocol/sdk- Official MCP SDK for TypeScripttedious- SQL Server connector for Node.jszod- Schema validationdotenv- Environment variable management
License
MIT License
