Run a read-only SQL query via webget
webget_run_queryExecute read-only SQL queries on a webget database replica with mandatory human approval, returning rows and columns from SELECT, SHOW, EXPLAIN, or DESCRIBE.
Instructions
Executes a read-only SQL query against a webget database server (a read-replica MySQL DB, per company policy) and returns the result as rows/columns. Only SELECT-style statements are allowed; use webget_list_databases first to find the exact database name. Requires a prior login (run npm run login in the webget-mcp project once) and inherits webget's own row/size/time limits. Before running, the human is always shown the exact query and must explicitly allow it — this is enforced by the server itself and cannot be bypassed by an "always allow" client setting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | A single read-only SQL statement (SELECT / SHOW / EXPLAIN / DESCRIBE). | |
| database | Yes | Exact database server name, e.g. "db.saas.increff.com". See webget_list_databases. |