← sqlai.dev

INDIVIDUAL MCP TOOL

run_sql

Execute a SQL query against a fresh ephemeral in-memory database built from your schema (and optional seed rows).

sqlai.devnone authenticationAvailability not checked

Input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description suggests code or command execution.

Parent endpoint

sqlai.dev

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

  • 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.
  • run_sql_batch — Run up to 10 queries against the same schema+seed.
  • diff_results — Answer "do these two queries return the same thing?