.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/richardhan/mssql_mcp_server
home/mcp-servers/richardhan/mssql_mcp_server
richardhan avatar

mssql_mcp_server

byrichardhan· 1 MCP server

Installs

3.4k

Stars

379

Forks

115

Category

Databases

View on GitHub

TL;DR

A Model Context Protocol (MCP) server for secure SQL Server database access through Claude Desktop.

How to install mssql_mcp_server?

richardhan/mssql_mcp_server
$git clone https://github.com/richardhan/mssql_mcp_server

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mssql_mcp_server by running `git clone https://github.com/richardhan/mssql_mcp_server`, then use it for the current task and follow its documentation at https://github.com/richardhan/mssql_mcp_server.

Files · 1

View on GitHub
README.md
1# Microsoft SQL Server MCP Server
2 
3[![PyPI](https://img.shields.io/pypi/v/microsoft_sql_server_mcp)](https://pypi.org/project/microsoft_sql_server_mcp/)
4[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5 
6<a href="https://glama.ai/mcp/servers/29cpe19k30">
7 <img width="380" height="200" src="https://glama.ai/mcp/servers/29cpe19k30/badge" alt="Microsoft SQL Server MCP server" />
8</a>
9 
10A Model Context Protocol (MCP) server for secure SQL Server database access through Claude Desktop.
11 
12## Features
13 
14- 🔍 List database tables
15- 📊 Execute SQL queries (SELECT, INSERT, UPDATE, DELETE)
16- 🔐 Multiple authentication methods (SQL, Windows, Azure AD)
17- 🏢 LocalDB and Azure SQL support
18- 🔌 Custom port configuration
19 
20## Quick Start
21 
22### Install with Claude Desktop
23 
24Add to your `claude_desktop_config.json`:
25 
26```json
27{
28 "mcpServers": {
29 "mssql": {
30 "command": "uvx",
31 "args": ["microsoft_sql_server_mcp"],
32 "env": {
33 "MSSQL_SERVER": "localhost",
34 "MSSQL_DATABASE": "your_database",
35 "MSSQL_USER": "your_username",
36 "MSSQL_PASSWORD": "your_password"
37 }
38 }
39 }
40}
41```
42 
43## Configuration
44 
45### Basic SQL Authentication
46```bash
47MSSQL_SERVER=localhost # Required
48MSSQL_DATABASE=your_database # Required
49MSSQL_USER=your_username # Required for SQL auth
50MSSQL_PASSWORD=your_password # Required for SQL auth
51```
52 
53### Windows Authentication
54```bash
55MSSQL_SERVER=localhost
56MSSQL_DATABASE=your_database
57MSSQL_WINDOWS_AUTH=true # Use Windows credentials
58```
59 
60### Azure SQL Database
61```bash
62MSSQL_SERVER=your-server.database.windows.net
63MSSQL_DATABASE=your_database
64MSSQL_USER=your_username
65MSSQL_PASSWORD=your_password
66# Encryption is automatic for Azure
67```
68 
69### Optional Settings
70```bash
71MSSQL_PORT=1433 # Custom port (default: 1433)
72MSSQL_ENCRYPT=true # Force encryption
73```
74 
75## Alternative Installation Methods
76 
77### Using pip
78```bash
79pip install microsoft_sql_server_mcp
80```
81 
82Then in `claude_desktop_config.json`:
83```json
84{
85 "mcpServers": {
86 "mssql": {
87 "command": "python",
88 "args": ["-m", "mssql_mcp_server"],
89 "env": { ... }
90 }
91 }
92}
93```
94 
95### Development
96```bash
97git clone https://github.com/RichardHan/mssql_mcp_server.git
98cd mssql_mcp_server
99pip install -e .
100```
101 
102## Security
103 
104- Create a dedicated SQL user with minimal permissions
105- Never use admin/sa accounts
106- Use Windows Authentication when possible
107- Enable encryption for sensitive data
108 
109## License
110 
111MIT

Preview

richardhan/mssql_mcp_serverrichardhan/mssql_mcp_server

# Microsoft SQL Server MCP Server

[![PyPI](https://img.shields.io/pypi/v/microsoft_sql_server_mcp)](https://pypi.org/project/microsoft_sql_server_mcp/)

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Reporichardhan/mssql_mcp_server
TypeMCP Servers
CategoryDatabases
UpdatedNov 2025
LicenseMIT
First seenJul 27, 2026

Tags

MCP

Related

6 picks
Type
  1. rafaelcartenet avatarmcp-databricks-serverModel Context Protocol (MCP) server for Databricks that empowers AI agents to autonomously interact with Unity Catalog metadata. Enables data discovery, lineage analysis, and intelligent SQL execution.MCP ServersMar 20262.4M40
  2. qdrant avatarmcp-server-qdrantAn official Qdrant Model Context Protocol (MCP) server implementationMCP ServersJul 20262.2M1.5k
  3. supabase avatarSupabase MCPQuery databases, manage projects and deploy edge functionsMCP Serverstoday387k2.8k
  4. mongodb-js avatarmongodb-mcp-serverMongoDB Model Context Protocol ServerMCP ServersJul 2026316k1.1k
  5. ahmedmustahid avatarpostgres-mcp-serverMCP server for interacting with PostgreSQL databasesMCP ServersJul 2025279k31
  6. benborla avatarmcp-server-mysqlMCP server for interacting with MySQL databases with write operations supportMCP ServersJul 202659k2.0k