mcpserver.lol
registry/sqlai-dev-sql-verifier
Connection check verified live · 27h ago

sqlai-dev-sql-verifier

Executes SQL in a real ephemeral database: rows, typed errors with suggestions, plans, diffs.

Tools 5
GitHub stars
Installs / wk
Licence
Transport streamable-http
Last checked 27h ago

Tools & capabilities

5 tools

Read from the running server on 27h ago.

diff_results seedengineschema*query_a*query_b*
Answer "do these two queries return the same thing?" — the self-check for query refactors. Executes query_a and query_b against identical fresh databases and compares result multis…
explain_plan query*engineschema*
Return the engine-native query plan for a query (SQLite: EXPLAIN QUERY PLAN) plus full-table-scan warnings. Use it to check whether an index would be used before recommending one.…
run_sql seedquery*engineschema*
Execute a SQL query against a fresh ephemeral in-memory database built from your schema (and optional seed rows). Returns real rows (max 500, truncation flagged), column names+type…
run_sql_batch seedengineschema*queries*
Run up to 10 queries against the same schema+seed. Each query executes in its OWN fresh database — writes in one query are NOT visible to the next (use this for testing variants, n…
validate_sql query*engineschema*
Validate a SQL query against a schema WITHOUT executing it (parse + name/type binding via EXPLAIN). Returns ok with referenced tables, or a structured error: {type: unknown_column|…