PostgreSQL Full Access MCP Server
A full-access PostgreSQL server for MCP with read/write capabilities and enhanced schema metadata.
PostgreSQL Full Access MCP Server
A powerful Model Context Protocol server providing full read-write access to PostgreSQL databases. Unlike the read-only official MCP PostgreSQL server, this enhanced implementation allows Large Language Models (LLMs) to both query and modify database content with proper transaction management and safety controls.
Table of Contents
- Features
- Tools
- Resources
- Using with Claude Desktop
- Environment Variables
- Using Full Database Access with Claude
- Security Considerations
- Docker
- License
- Comparison with Official PostgreSQL MCP Server
🌟 Features
Full Read-Write Access
- Safely execute DML operations (INSERT, UPDATE, DELETE)
- Create, alter, and manage database objects with DDL
- Transaction management with explicit commit
- Safety timeouts and automatic rollback protection
Rich Schema Information
- Detailed column metadata (data types, descriptions, max length, nullability)
- Primary key identification
- Foreign key relationships
- Index information with type and uniqueness flags
- Table row count estimates
- Table and column descriptions (when available)
Advanced Safety Controls
- SQL query classification (DQL, DML, DDL, DCL, TCL)
- Enforced read-only execution for safe queries
- All operations run in isolated transactions
- Automatic transaction timeout monitoring
- Configurable safety limits
- Two-step transaction commit process with explicit user confirmation
🔧 Tools
-
execute_query
- Execute read-only SQL queries (SELECT statements)
- Input:
sql(string): The SQL query to execute - All queries are executed within a READ ONLY transaction
- Results include execution time metrics and field information
-
execute_dml_ddl_dcl_tcl
- Execute data modification operations (INSERT, UPDATE, DELETE) or schema changes (CREATE, ALTER, DROP)
- Input:
sql(string): The SQL statement to execute - Automatically wrapped in a transaction with configurable timeout
- Returns a transaction ID for explicit commit
- Important safety feature: The conversation will end after execution, allowing the user to review the results before deciding to commit or rollback
-
execute_maintenance
- Execute maintenance commands like VACUUM, ANALYZE, or CREATE DATABASE outside of transactions
- Input:
sql(string): The SQL statement to execute - must be VACUUM, ANALYZE, or CREATE DATABASE - Returns a result object with execution time metrics
-
execute_commit
- Explicitly commit a transaction by its ID
- Input:
transaction_id(string): ID of the transaction to commit - Safely handles cleanup after commit or rollback
- Permanently applies changes to the database
-
execute_rollback
- Explicitly rollback a transaction by its ID
- Input:
transaction_id(string): ID of the transaction to rollback - Safely discards all changes and cleans up resources
- Useful when reviewing changes and deciding not to apply them
-
list_tables
- Get a comprehensive list of all tables in the database
- Includes column count and table descriptions
- No input parameters required
-
describe_table
- Get detailed information about a specific table structure
- Input:
table_name(string): Name of the table to describe - Returns complete schema information including primary keys, foreign keys, indexes, and column details
📊 Resources
The server provides enhanced schema information for database tables:
- Table Schemas (
postgres://<host>/<table>/schema)- Detailed JSON schema information for each table
- Includes complete column metadata, primary keys, and constraints
- Automatically discovered from database metadata
🚀 Using with Claude Desktop
Claude Desktop Integration
To use this server with Claude Desktop, follow these steps:
-
First, ensure you have Node.js installed on your system
-
Install the package using npx or add it to your project
-
Configure Claude Desktop by editing
claude_desktop_config.json(typically found at~/Library/Application Support/Claude/on macOS):
{
"mcpServers": {
"postgres-full": {
"command": "npx",
"args": [
"-y",
"mcp-postgres-full-access",
"postgresql://username:password@localhost:5432/database"
],
"env": {
"TRANSACTION_TIMEOUT_MS": "60000",
"MAX_CONCURRENT_TRANSACTIONS": "5",
"PG_STATEMENT_TIMEOUT_MS": "30000"
}
}
}
}
- Replace the database connection string with your actual PostgreSQL connection details
- Restart Claude Desktop completely
Important: Using "Allow Once" for Safety
When Claude attempts to commit changes to your database, Claude Desktop will prompt you for approval:

Always review the SQL changes carefully before approving them!
Best practices for safety:
- Always click "Allow once" (not "Always allow") for commit operations
- Review the transaction SQL carefully before approving
- Consider using a database user with limited permissions
- Use a testing database if possible when first trying this server
This "Allow once" approach gives you full control to prevent unwanted changes to your database while still enabling Claude to help with data management tasks when needed.
⚙️ Environment Variables
You can customize the server behavior with environment variables in your Claude Desktop config:
"env": {
"TRANSACTION_TIMEOUT_MS": "60000",
"MAX_CONCURRENT_TRANSACTIONS": "5"
}
Key environment variables:
-
TRANSACTION_TIMEOUT_MS: Transaction timeout in milliseconds (default: 15000)- Increase this if your transactions need more time
- Transactions exceeding this time will be automatically rolled back for safety
-
MAX_CONCURRENT_TRANSACTIONS: Maximum concurrent transactions (default: 10)- Lower this number for more conservative operation
- Higher values allow more simultaneous write operations
-
ENABLE_TRANSACTION_MONITOR: Enable/disable transaction monitor ("true" or "false", default: "true")- Monitors and automatically rolls back abandoned transactions
- Rarely needs to be disabled
-
PG_STATEMENT_TIMEOUT_MS: SQL query execution timeout in ms (default: 30000)- Limits how long any single SQL statement can run
- Important safety feature to prevent runaway queries
-
PG_MAX_CONNECTIONS: Maximum PostgreSQL connections (default: 20)- Important to stay within your database's connection limits
-
MONITOR_INTERVAL_MS: How often to check for stuck transactions (default: 5000)- Usually doesn't need adjustment
🔄 Using Full Database Access with Claude
This server enables Claude to both read from and write to your PostgreSQL database with your approval. Here are some example conversation flows:
Example: Creating a New Table and Adding Data
You: "I need a new products table with columns for id, name, price, and inventory"
Claude: Analyzes your database and creates a query
CREATE TABLE products (
id SERIAL PRIMARY KEY,
name VARCHAR(100) NOT NULL,
price DECIMAL(10,2) NOT NULL,
inventory INTEGER DEFAULT 0
);
Claude Desktop will prompt you to approve this operation
You: Review and click "Allow once"
Claude: "I've created the products table. Would you like me to add some sample data?"
You: "Yes, please add 5 sample products"
Claude: Creates INSERT statements and prompts for approval You review and approve with "Allow once"
Example: Data Analysis with Safe Queries
You: "What are my top 3 products by price?"
Claude: Executes a read-only query automatically Shows you the results
Safety Workflow
The key safety feature is the two-step approach for any operation that modifies your database:
- Claude analyzes your request and prepares SQL
- For read-only operations (SELECT), Claude executes automatically
- For write operations (INSERT, UPDATE, DELETE, CREATE, etc.):
- Claude executes the SQL in a transaction and ends the conversation
- You review the results
- In a new conversation, you respond with "Yes" to commit or "No" to rollback
- Claude Desktop shows you exactly what will be changed and asks for permission
- You click "Allow once" to permit the specific operation
- Claude executes the operation and returns results
This gives you multiple opportunities to verify changes before they're permanently applied to the database.
⚠️ Security Considerations
When connecting Claude to your database with write access:
Database User Permissions
IMPORTANT: Create a dedicated database user with appropriate permissions:
-- Example of creating a restricted user (adjust as needed)
CREATE USER claude_user WITH PASSWORD 'secure_password';
GRANT SELECT ON ALL TABLES IN SCHEMA public TO claude_user;
GRANT INSERT, UPDATE, DELETE ON TABLE table1, table2 TO claude_user;
-- Only grant specific permissions as needed
Best Practices for Safe Usage
-
Always use "Allow once" to review each write operation
- Never select "Always allow" for database modifications
- Take time to review the SQL carefully
-
Connect to a testing database when first exploring this tool
- Consider using a database copy/backup for initial testing
-
Limit database user permissions to only what's necessary
- Avoid using a superuser or admin account
- Grant table-specific permissions when possible
-
Implement database backups before extensive use
-
Never share sensitive data that shouldn't be exposed to LLMs
-
Verify all SQL operations before approving them
- Check table names
- Verify column names and data
- Confirm WHERE clauses are appropriate
- Look for proper transaction handling
Docker
The server can be easily run in a Docker container:
# Build the Docker image
docker build -t mcp-postgres-full-access .
# Run the container
docker run -i --rm mcp-postgres-full-access "postgresql://username:password@host:5432/database"
For Docker on macOS, use host.docker.internal to connect to the host network:
docker run -i --rm mcp-postgres-full-access "postgresql://username:[email protected]:5432/database"
📄 License
This MCP server is licensed under the MIT License.
💡 Comparison with Official PostgreSQL MCP Server
| Feature | This Server | Official MCP PostgreSQL Server |
|---|---|---|
| Read Access | ✅ | ✅ |
| Write Access | ✅ | ❌ |
| Schema Details | Enhanced | Basic |
| Transaction Support | Explicit with timeouts | Read-only |
| Index Information | ✅ | ❌ |
| Foreign Key Details | ✅ | ❌ |
| Row Count Estimates | ✅ | ❌ |
| Table Descriptions | ✅ | ❌ |
Author
Created by Syahiid Nur Kamil (@syahiidkamil)
Copyright © 2024 Syahiid Nur Kamil. All rights reserved.
Máy chủ liên quan
Supabase Coolify MCP Server
Comprehensive MCP server for managing self-hosted Supabase on Coolify with full deployment, migrations, edge functions, and rollback support.
dbt CLI
An MCP server that wraps the dbt CLI, allowing AI agents to interact with dbt projects.
MCP Registry - Lyra
Lyra Registry is a standalone API service that catalogs, scores, and serves metadata for all tools in the Lyra ecosystem. It enables discovery, evaluation, and integration of 800+ crypto, blockchain, DeFi, memecoin, NFT, metaverse, trading tools, MCP tools.
mcp-database-server
Production-grade Model Context Protocol (MCP) server for unified SQL database access. Connect multiple databases through a single MCP server with schema discovery, relationship mapping, caching, and safety controls.
Redshift Utils MCP Server
Perform database actions on Amazon Redshift via its Data API.
Fireproof JSON DB Collection Server
Manage multiple Fireproof JSON document databases with cloud sync capabilities.
dbt
Official MCP server for dbt (data build tool) providing integration with dbt Core/Cloud CLI, project metadata discovery, model information, and semantic layer querying capabilities.
aml
AML Watcher MCP Server gives AI agents direct, real-time access to AML Watcher's proprietary sanctions, watchlist, and PEP databases. Connect your agentic workflows to 215+ sanctions regimes, 2.6M+ PEP profiles, and coverage across 235+ countries, no complex integrations required.
Open Census MCP Server
Access and query U.S. Census demographic data using natural language.
Sefaria Jewish Library MCP Server
Provides access to Jewish texts from the Sefaria library.