Sáltate la instalación. Funcionando en menos de 2 minutos.
Inicia una prueba gratuita en cloud.anythingmcp.com, añade Microsoft SQL Server con un clic y apunta tu cliente de IA (Claude, ChatGPT, Copilot o Cursor) al endpoint MCP generado. Sin Docker, sin git clone, sin experiencia de desarrollo.
Summary
Query a Microsoft SQL Server database directly: list tables, describe columns and run read-only T-SQL. Supports SQL Server and Windows (NTLM) authentication. Installs read-only.
Prueba a pedir
Prompts de ejemplo para Microsoft SQL Server
Haz clic en un prompt para copiarlo. Pégalo en Claude, ChatGPT, Cursor, Gemini, Copilot u OpenClaw para ejecutarlo contra este conector.
Claude es IA y puede equivocarse. Verifica siempre las respuestas.
💡 ¿Sin instalación? Usa cloud.anythingmcp.com directamente. Inicia sesión, pulsa Connectors → Microsoft SQL Server, pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin
git clone, sin servidor local.
Microsoft SQL Server + Claude
Query a Microsoft SQL Server database directly: list tables, describe columns and run read-only T-SQL. Supports SQL Server and Windows (NTLM) authentication. Installs read-only.
Requisitos previos
Las instrucciones de configuración completas están incluidas en el conector (visibles en el store al seleccionarlo). Las variables de entorno requeridas:
MSSQL_HOST, MSSQL_PORT, MSSQL_DATABASE, MSSQL_USER, MSSQL_PASSWORD
Paso 1 — Obtener credenciales
Setup
- Create a login and a database user with only
db_datareader:CREATE LOGIN amcp_reader WITH PASSWORD = 'change-me'; USE sales; CREATE USER amcp_reader FOR LOGIN amcp_reader; ALTER ROLE db_datareader ADD MEMBER amcp_reader; - Set
MSSQL_HOST,MSSQL_PORT(1433),MSSQL_DATABASE,MSSQL_USERandMSSQL_PASSWORD.
Windows authentication: set MSSQL_DOMAIN as well and the engine switches to NTLM instead of SQL Server auth. Leave it blank for a SQL login.
…(continued in the in-app connector instructions)
Paso 2 — Instalar el adapter
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
Paso 3 — Añadir el conector en Claude
Ruta recomendada — funciona en claude.ai web sin tocar ningún archivo de configuración.
- Abre claude.ai/customize/connectors.
- Pulsa "Add custom connector".
- Rellena:
- Name:
Microsoft SQL Server - URL:
https://cloud.anythingmcp.com/mcp - Authentication: Bearer token → pega tu MCP API key (de AnythingMCP → Profile → MCP API Keys → New Key)
- Name:
- Pulsa Connect para autorizar.
Todas las herramientas debajo aparecen en tu chat — empieza a escribir prompts.
Herramientas disponibles
| Tool | What it does |
|---|---|
mssql_list_tables | List the tables and views in the database with their schema and, where the server tracks it, an approximate row count |
mssql_describe_table | Describe one table: every column with its data type, nullability and default |
mssql_find_columns | Find columns across every table whose name matches a pattern — the fast way to locate where customer e-mail addresses, IBANs or order number |
mssql_query | Run a read-only SQL statement against Microsoft SQL Server and return up to 1000 rows |
mssql_query_examples | Show worked example queries for Microsoft SQL Server: how to list schemas, find large tables, inspect indexes and check what is running righ |
FAQ
¿Funciona con Claude Code igual que con Claude Desktop? Sí — apunta ambos a https://cloud.anythingmcp.com/mcp.
Siguientes pasos
¿Te ha sido útil esta guía?