execute_sql
Run SQL queries directly on the Postgres MCP server to interact with and manage databases efficiently during development, testing, and deployment.
Instructions
Execute any SQL query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sql | No | SQL to run | all |
Input Schema (JSON Schema)
{
"properties": {
"sql": {
"default": "all",
"description": "SQL to run",
"title": "Sql",
"type": "string"
}
},
"title": "execute_sqlArguments",
"type": "object"
}