Synechron's Text2SQL MCP Server is a [Model Context Protocol](https://modelcontextprotocol.io/introduction) (MCP) server. It provides MCP clients
Text2sql mcp mcp server lets Claude, Cursor and other MCP clients work with Text2sql MCP directly. Synechron's Text2SQL MCP Server is a Model Context Protocol (MCP) server. It provides MCP clients like Cursor, VSCode, and Claude Desktop, with natural language access to relational databases of various types – enabling users to ask questions of their.
Synechron's Text2SQL MCP Server is a Model Context Protocol (MCP) server. It provides MCP clients like Cursor, VSCode, and Claude Desktop, with natural language access to relational databases of various types – enabling users to ask questions of their data using natural language capabilities.
Once connected, the assistant can call these 2 tools directly:
Text2Sql_DatabaseName — Query a specific database using natural languageParameters — - query: Natural language query to execute against the databaseSetup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.
The server reads 8 environment variables: IGNORE_SCHEMA, MODEL_API_TYPE, AWS_PROFILE, API_VERSION, LLM_MODEL_NAME, EMBED_MODEL_NAME, LOG_LEVEL, FASTMCP_HOST. Keep credentials in your client's env block or a secrets manager rather than committing them.
Database servers turn schema archaeology and ad-hoc reporting into conversation, which is why they tend to be the second or third server people install. Text2sql MCP sits in that group, and the shape of its toolset — Text2Sql_DatabaseName, Parameters — tells you what it is really for. Worth comparing against the other databases servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.
| Tool | What it does |
|---|---|
| Text2Sql_DatabaseName | Query a specific database using natural language |
| Parameters | - query: Natural language query to execute against the database |
```json
{
"mcpServers": {
"text2sql": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--env-file",
".env",
"709825985650.dkr.ecr.us-east-1.amazonaws.com/synechron/mcp-text2sql:0.0.10-2025.07.04-rc3",
"server"
]
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| IGNORE_SCHEMA | Configuration value read at startup. | Optional |
| MODEL_API_TYPE | Configuration value read at startup. | Optional |
| AWS_PROFILE | Configuration value read at startup. | Optional |
| API_VERSION | Configuration value read at startup. | Optional |
| LLM_MODEL_NAME | Configuration value read at startup. | Optional |
| EMBED_MODEL_NAME | Configuration value read at startup. | Optional |
| LOG_LEVEL | Configuration value read at startup. | Optional |
| FASTMCP_HOST | Endpoint or connection string the server talks to. | Optional |
Read-only SQL access to Postgres — let your assistant inspect schemas and answer questions from real data.
Manage your whole Supabase project in conversation — database, auth, storage, Edge Functions and branches.
Query, modify and analyse local SQLite databases in conversation — the fastest way to chat with a data file.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Official MongoDB server covering data, schemas and Atlas management — from find queries to spinning up clusters.
Serverless Postgres with database branching — point your assistant at Neon and let it work on disposable copies.