Turn natural-language questions into validated read-only SQL for SQLite queries.
Copy the install command and let the AI configure it · recommended for beginners
No copy-paste install info for "text-to-sql-mcp" yet — see the docs or source repo.
Convert “show monthly sales totals for 2024, ordered by month ascending” into SQL, validate it, and run it on the SQLite database.
Returns the validated read-only SQL and the query result table, or a rejection reason if it violates the limits.
Find the number of users who registered in the last 30 days and have active status; generate SQL, structurally validate it, and execute it.
Outputs the corresponding read-only SQL and the count result, ensuring the query passes structural validation.
Convert “delete all test orders” into SQL and execute it.
Because only approved read-only queries are allowed, the tool should reject execution and explain why.
Data analysts or researchers can ask questions in natural language, and the tool converts them into SQL to query a SQLite database. This lowers the barrier to getting data without hand-writing SQL.
Developers can integrate it as an MCP server so database questions go through structural validation first. Disallowed queries are rejected instead of being executed.
When teammates ask ad hoc data questions, the tool can first generate and validate SQL, then run a read-only query. This helps get results while avoiding risky statements.
It is an MCP server that turns natural-language questions into SQL, structurally validates queries, and executes approved read-only queries on a SQLite database, returning results or rejection messages.
The provided information only explicitly mentions SQLite. For support of other databases, see the source repository.
No. The description says it only executes approved read-only queries, and disallowed requests are rejected with a rejection message.
Turn natural language questions into SQL and run them on SQLite databases.
Query SQL databases in natural language with auto-generated, self-correcting SQL.
Query and manage SQLite databases using natural language through an MCP tool.
Query PostgreSQL and MySQL databases in natural language with read-only safety.
Query SQL Server databases with natural language through Claude.
Safely query Microsoft SQL Server databases in natural language with read-only access.