Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent endpoint
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.sqlai-dev-sql-verifier]
url = "https://mcp.sqlai.dev/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"sqlai-dev-sql-verifier": {
"type": "http",
"url": "https://mcp.sqlai.dev/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: sqlai-dev-sql-verifier
Remote MCP URL: https://mcp.sqlai.dev/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"sqlai-dev-sql-verifier": {
"url": "https://mcp.sqlai.dev/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"sqlai-dev-sql-verifier": {
"type": "http",
"url": "https://mcp.sqlai.dev/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "sqlai-dev-sql-verifier",
"transport": "streamable-http",
"url": "https://mcp.sqlai.dev/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
run_sql— Execute a SQL query against a fresh ephemeral in-memory database built from your schema (and optional seed rows).validate_sql— Validate a SQL query against a schema WITHOUT executing it (parse + name/type binding via EXPLAIN).explain_plan— Return the engine-native query plan for a query (SQLite: EXPLAIN QUERY PLAN) plus full-table-scan warnings.diff_results— Answer "do these two queries return the same thing?