execute_query
ActiveTool of BorealHost
Execute a SQL query on a site's database. Supports SELECT, INSERT, UPDATE, DELETE, and DDL statements. Results are limited to 1000 rows for SELECT queries. Requires: API key with write scope. Args: slug: Site identifier database: Database name query: SQL query string Returns: {"columns": ["id", "title"], "rows": [[1, "Hello"], ...], "affected_rows": 0, "query_time_ms": 12}
Parameters schema
{
"type": "object",
"title": "execute_queryArguments",
"required": [
"slug",
"database",
"query"
],
"properties": {
"slug": {
"type": "string",
"title": "Slug"
},
"query": {
"type": "string",
"title": "Query"
},
"database": {
"type": "string",
"title": "Database"
}
}
}Parent server
BorealHost
https://github.com/alainsvrd/borealhost-mcp
1/7 registries