MCP server de solo lectura para análisis de SQL Server
{
"mcpServers": {
"sql-server-reviewer": {
"env": {
"SQLSERVER_CONNECTION_STRING": "Server=localhost;Database=MiBase;User Id=reader;Password=secret;TrustServerCertificate=True;"
},
"args": [
"run",
"--project",
"C:/ruta/a/sql-server-reviewer-mcp/SqlServerMcp"
],
"command": "dotnet"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server de solo lectura para análisis de SQL Server
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 3 days ago.
Will it work with my client?
Transport: stdio, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Sql Server Reviewer Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Un servidor MCP (Model Context Protocol) de solo lectura para SQL Server. Permite que clientes IA como Claude Desktop, Cursor o cualquier cliente MCP compatible analicen esquemas, dependencias, procedimientos almacenados e índices faltantes de tu base de datos — sin riesgo de modificar nada.
| Herramienta | Descripción |
|---|---|
| list_tables | Lista todas las tablas con filas aproximadas y espacio |
| analyze_table_schema | Columnas, tipos, PKs, FKs e índices de una tabla |
| get_sp_definition | Código fuente de un procedimiento almacenado |
| list_stored_procedures | Catálogo de todos los SPs |
| get_function_definition | Código fuente de una función |
| find_object_dependencies | Qué objetos referencia y quién lo referencia |
| search_in_code | Buscar texto en el código de todos los objetos |
| get_missing_indexes | Índices faltantes sugeridos por el motor (DMVs) |
| get_table_relationships | Mapa de foreign keys |
db_datareader + VIEW DEFINITION)Descarga el ejecutable para tu plataforma desde Releases:
sql-server-reviewer-mcp-win-x64.zip — Windowssql-server-reviewer-mcp-linux-x64.tar.gz — Linuxsql-server-reviewer-mcp-osx-x64.tar.gz — macOSEstos son self-contained — no necesitas .NET instalado.
git clone https://github.com/EmilianoRojas/sql-server-reviewer-mcp.git
cd sql-server-reviewer-mcp/SqlServerMcp
dotnet publish -c Release -o ./publish
docker build -t sql-server-reviewer-mcp .
# Linux/macOS
./publish/SqlServerMcp
# Windows
.\publish\SqlServerMcp.exe
El proceso esperará input en stdin. Si se queda esperando, funciona correctamente. Cierra con
Ctrl+C.
La conexión a SQL Server se configura mediante la variable de entorno SQLSERVER_CONNECTION_STRING.
Server=tu-servidor;Database=tu-base;User Id=tu-usuario;Password=tu-password;TrustServerCertificate=True;
Para Windows Authentication:
Server=tu-servidor;Database=tu-base;Integrated Security=True;TrustServerCertificate=True;
Edita tu archivo de configuración (claude_desktop_config.json):
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"sql-server-reviewer": {
"command": "dotnet",
"args": ["run", "--project", "C:/ruta/a/sql-server-reviewer-mcp/SqlServerMcp"],
"env": {
"SQLSERVER_CONNECTION_STRING": "Server=localhost;Database=MiBase;User Id=reader;Password=secret;TrustServerCertificate=True;"
}
}
}
}
O usando el ejecutable publicado:
{
"mcpServers": {
"sql-server-reviewer": {
"command": "C:/ruta/a/sql-server-reviewer-mcp/SqlServerMc
... [View full README on GitHub](https://github.com/EmilianoRojas/sql-server-reviewer-mcp#readme)