PostgreSQL MCP Server

debug_database

Debug common PostgreSQL issues

Input Schema

NameRequiredDescriptionDefault
connectionStringYesPostgreSQL connection string
issueYesType of issue to debug
logLevelNoLogging detail levelinfo

Input Schema (JSON Schema)

{ "properties": { "connectionString": { "description": "PostgreSQL connection string", "type": "string" }, "issue": { "description": "Type of issue to debug", "enum": [ "connection", "performance", "locks", "replication" ], "type": "string" }, "logLevel": { "default": "info", "description": "Logging detail level", "enum": [ "info", "debug", "trace" ], "type": "string" } }, "required": [ "connectionString", "issue" ], "type": "object" }