A Model Context Protocol (MCP) server that provides PostgreSQL database management capabilities. This server assists with analyzing existing PostgreSQL setups, providing implementation guidance, debugging database issues, managing schemas, migrating data, and monitoring database performance.
Analyzes PostgreSQL database configuration and performance metrics:
- Configuration analysis
- Performance metrics
- Security assessment
- Recommendations for optimization
// Example usage
{
"connectionString": "postgresql://user:password@localhost:5432/dbname",
"analysisType": "performance" // Optional: "configuration" | "performance" | "security"
}Provides step-by-step PostgreSQL installation and configuration guidance:
- Platform-specific installation steps
- Configuration recommendations
- Security best practices
- Post-installation tasks
// Example usage
{
"platform": "linux", // Required: "linux" | "macos" | "windows"
"version": "15", // Optional: PostgreSQL version
"useCase": "production" // Optional: "development" | "production"
}Debug common PostgreSQL issues:
- Connection problems
- Performance bottlenecks
- Lock conflicts
- Replication status
// Example usage
{
"connectionString": "postgresql://user:password@localhost:5432/dbname",
"issue": "performance", // Required: "connection" | "performance" | "locks" | "replication"
"logLevel": "debug" // Optional: "info" | "debug" | "trace"
}Get detailed schema information for a database or specific table:
- List of tables in a database
- Column definitions
- Constraints (primary keys, foreign keys, etc.)
- Indexes
// Example usage
{
"connectionString": "postgresql://user:password@localhost:5432/dbname",
"tableName": "users" // Optional: specific table to get info for
}Retrieve Row-Level Security policies for a specific table or all tables in a schema:
- Policy names and associated tables
- Roles the policies apply to
- Command types (SELECT, INSERT, UPDATE, DELETE, ALL)
- USING and WITH CHECK expressions
- Policy comments
// Example usage
{
"connectionString": "postgresql://user:password@localhost:5432/dbname",
"tableName": "users", // Optional: specific table to get policies for
"schema": "public" // Optional: defaults to public
}Create a new table with specified columns:
- Define column names and types
- Set nullable constraints
- Set default values
// Example usage
{
"connectionString": "postgresql://user:password@localhost:5432/dbname",
"tableName": "users",
"columns": [
{ "name": "id", "type": "SERIAL", "nullable": false },
{ "name": "username", "type": "VARCHAR(100)", "nullable": false },
{ "name": "email", "type": "VARCHAR(255)", "nullable": false },
{ "name": "created_at", "type": "TIMESTAMP", "default": "NOW()" }
]
}Modify existing tables:
- Add new columns
- Modify column types or constraints
- Drop columns
// Example usage
{
"connectionString": "postgresql://user:password@localhost:5432/dbname",
"tableName": "users",
"operations": [
{ "type": "add", "columnName": "last_login", "dataType": "TIMESTAMP" },
{ "type": "alter", "columnName": "email", "nullable": false },
{ "type": "drop", "columnName": "temporary_field" }
]
}Export table data to JSON or CSV format:
- Filter data with WHERE clause
- Limit number of rows
- Choose output format
// Example usage
{
"connectionString": "postgresql://user:password@localhost:5432/dbname",
"tableName": "users",
"outputPath": "./exports/users.json",
"where": "created_at > '2023-01-01'", // Optional
"limit": 1000, // Optional
"format": "json" // Optional: "json" | "csv"
}Import data from JSON or CSV files:
- Optionally truncate table before import
- Support for different formats
- Custom CSV delimiters
// Example usage
{
"connectionString": "postgresql://user:password@localhost:5432/dbname",
"tableName": "users",
"inputPath": "./imports/users.json",
"truncateFirst": false, // Optional
"format": "json", // Optional: "json" | "csv"
"delimiter": "," // Optional: for CSV files
}Copy data between two PostgreSQL databases:
- Filter data with WHERE clause
- Optionally truncate target table
// Example usage
{
"sourceConnectionString": "postgresql://user:password@localhost:5432/source_db",
"targetConnectionString": "postgresql://user:password@localhost:5432/target_db",
"tableName": "users",
"where": "active = true", // Optional
"truncateTarget": false // Optional
}Set a comment on a database object:
- Support for multiple object types (tables, columns, functions, policies, triggers, constraints, indexes, sequences)
- Schema specification
- Parent object specification for columns, constraints, policies, and triggers
- Parameter specification for functions
// Example usage
{
"connectionString": "postgresql://user:password@localhost:5432/dbname",
"objectType": "table", // Required: "table" | "column" | "function" | "policy" | "trigger" | "constraint" | "index" | "sequence"
"objectName": "users", // Required: name of the object to comment on
"comment": "Stores user account information", // Required: the comment text
"schema": "public", // Optional: defaults to public
"parentObject": "users", // Optional: required for column, constraint, policy, trigger
"parameters": "integer, text" // Optional: for functions only
}Retrieve a comment from a database object:
- Support for the same object types as set_database_comment
- Returns the comment text and object details
// Example usage
{
"connectionString": "postgresql://user:password@localhost:5432/dbname",
"objectType": "table", // Required: "table" | "column" | "function" | "policy" | "trigger" | "constraint" | "index" | "sequence"
"objectName": "users", // Required: name of the object to get comment from
"schema": "public", // Optional: defaults to public
"parentObject": "users", // Optional: required for column, constraint, policy, trigger
"parameters": "integer, text" // Optional: for functions only
}Remove a comment from a database object:
- Support for the same object types as set_database_comment
- Same parameter structure as get_database_comment
// Example usage
{
"connectionString": "postgresql://user:password@localhost:5432/dbname",
"objectType": "table", // Required: "table" | "column" | "function" | "policy" | "trigger" | "constraint" | "index" | "sequence"
"objectName": "users", // Required: name of the object to remove comment from
"schema": "public", // Optional: defaults to public
"parentObject": "users", // Optional: required for column, constraint, policy, trigger
"parameters": "integer, text" // Optional: for functions only
}Real-time monitoring of PostgreSQL database:
- Database metrics (connections, cache hit ratio, etc.)
- Table metrics (size, row counts, dead tuples)
- Active query information
- Lock information
- Replication status
- Configurable alerts
// Example usage
{
"connectionString": "postgresql://user:password@localhost:5432/dbname",
"includeTables": true, // Optional
"includeQueries": true, // Optional
"includeLocks": true, // Optional
"includeReplication": false, // Optional
"alertThresholds": { // Optional
"connectionPercentage": 80,
"longRunningQuerySeconds": 30,
"cacheHitRatio": 0.95,
"deadTuplesPercentage": 10,
"vacuumAge": 7
}
}- Node.js >= 18.0.0
- PostgreSQL server (for target database operations)
- Network access to target PostgreSQL instances
- Clone the repository
- Install dependencies:
npm install
- Build the server:
npm run build
- Add to MCP settings file:
{ "mcpServers": { "postgresql-mcp": { "command": "node", "args": ["/path/to/postgresql-mcp-server/build/index.js"], "disabled": false, "alwaysAllow": [] } } }
npm run dev- Start development server with hot reloadnpm run lint- Run ESLintnpm test- Run tests
-
Connection Security
- Uses connection pooling
- Implements connection timeouts
- Validates connection strings
- Supports SSL/TLS connections
-
Query Safety
- Validates SQL queries
- Prevents dangerous operations
- Implements query timeouts
- Logs all operations
-
Authentication
- Supports multiple authentication methods
- Implements role-based access control
- Enforces password policies
- Manages connection credentials securely
- Always use secure connection strings with proper credentials
- Follow production security recommendations for sensitive environments
- Regularly monitor and analyze database performance
- Keep PostgreSQL version up to date
- Implement proper backup strategies
- Use connection pooling for better resource management
- Implement proper error handling and logging
- Regular security audits and updates
The server implements comprehensive error handling:
- Connection failures
- Query timeouts
- Authentication errors
- Permission issues
- Resource constraints
- Fork the repository
- Create a feature branch
- Commit your changes
- Push to the branch
- Create a Pull Request
This project is licensed under the AGPLv3 License - see LICENSE file for details.