PostgreSQL MCP Server

analyze_database

Analyze PostgreSQL database configuration and performance

Input Schema

NameRequiredDescriptionDefault
analysisTypeNoType of analysis to perform
connectionStringYesPostgreSQL connection string

Input Schema (JSON Schema)

{ "properties": { "analysisType": { "description": "Type of analysis to perform", "enum": [ "configuration", "performance", "security" ], "type": "string" }, "connectionString": { "description": "PostgreSQL connection string", "type": "string" } }, "required": [ "connectionString" ], "type": "object" }