
FastPostgresMCP
A blazing fast MCP server that enables AI agents to interact with multiple PostgreSQL databases, providing functionality to list tables, inspect schemas, execute queries, and run transactions.
README
FastPostgresMCP 🐘⚡️ (Full-Featured Multi-DB MCP Server)
This project implements a blazing fast, type-safe, and full-featured Model Context Protocol (MCP) Server designed for AI Agents (like Cursor, Claude Desktop) to interact with multiple PostgreSQL databases, including listing tables and inspecting schemas.
It is built with Bun, TypeScript, postgres
, and leverages advanced features of the fastmcp
framework for building robust MCP servers.
Purpose: An MCP Server for AI Agents
This is not a library to be imported into your code. It is a standalone server application. You run it as a process, and MCP clients (like AI agents) communicate with it using the JSON-based Model Context Protocol (v2.0), typically over a stdio
connection managed by the client application (e.g., Cursor).
✨ Core Features
- 🚀 Blazing Fast: Built on Bun and
fastmcp
. - 🔒 Type-Safe: End-to-end TypeScript with Zod schema validation.
- 🐘 Multi-Database Support: Connect to and manage interactions across several PostgreSQL instances defined in
.env
. - 🛡️ Secure by Design: Parameterized queries via
postgres
prevent SQL injection. - 🔑 Optional Authentication: Secure network-based connections (SSE/HTTP) using API Key validation (
fastmcp
'sauthenticate
hook). - 📄 Database Schema via MCP Resources:
- List Tables: Get a list of tables in a database via
db://{dbAlias}/schema/tables
. - Inspect Table Schema: Get detailed column info for a specific table via
db://{dbAlias}/schema/{tableName}
.
- List Tables: Get a list of tables in a database via
- 💬 Enhanced Tool Interaction:
- In-Tool Logging: Tools send detailed logs back to the client (
log
context). - Progress Reporting: Long-running operations report progress (
reportProgress
context).
- In-Tool Logging: Tools send detailed logs back to the client (
- 🧠 Session-Aware: Access session information within tool execution context (
session
context). - 📡 Event-Driven: Uses
server.on
andsession.on
for connection/session event handling. - 🔧 Modern Developer Experience (DX): Clear configuration, intuitive API, easy testing with
fastmcp
tools.
What's Included (fastmcp Features Leveraged)
FastMCP
Server Coreserver.addTool
(forquery
,execute
,transaction
)server.addResourceTemplate
(for listing tables and inspecting table schemas)server.start
(withstdio
focus, adaptable forsse
/http
)- Optional:
authenticate
Hook (for API Key validation) - Tool Execution
context
(log
,reportProgress
,session
) - Zod for Parameter Schema Validation
server.on
(for connection logging)- (Potentially)
session.on
for session-specific logic
📋 Prerequisites
- Bun (v1.0 or later recommended): Installed and in PATH.
- PostgreSQL Database(s): Access credentials and connectivity. User needs permissions to query
information_schema
.
⚙️ Installation
-
Clone the repository:
# Replace with your actual repository URL git clone https://github.com/yourusername/fast-postgres-mcp.git cd fast-postgres-mcp
-
Install dependencies:
bun install
🔑 Configuration (Multi-Database & Optional Auth)
Configure via environment variables, typically loaded from .env
.
- Create
.env
file:cp .env.example .env
- Edit
.env
: DefineDB_ALIASES
,DEFAULT_DB_ALIAS
, database connection details (DB_<ALIAS>_...
), and optionalENABLE_AUTH
/MCP_API_KEY
.
# .env.example - Key Variables
# REQUIRED: Comma-separated list of unique DB aliases
DB_ALIASES=main,reporting
# REQUIRED: Default alias if 'dbAlias' is omitted in tool calls
DEFAULT_DB_ALIAS=main
# OPTIONAL: Enable API Key auth (primarily for network transports)
ENABLE_AUTH=false
MCP_API_KEY=your_super_secret_api_key_here # CHANGE THIS
# Define DB connection details for each alias (DB_MAIN_*, DB_REPORTING_*, etc.)
# Example:
DB_MAIN_HOST=localhost
DB_MAIN_PORT=5432
DB_MAIN_NAME=app_prod_db
DB_MAIN_USER=app_user # Needs permissions on information_schema
DB_MAIN_PASSWORD=app_secret_password
DB_MAIN_SSL=disable # Recommend 'require' or stricter for prod
DB_REPORTING_HOST=reporting-db.read-replica.internal
# ... other reporting DB details ...
DB_REPORTING_USER=readonly_reporter # Needs permissions on information_schema
# --- Optional: Server Logging Level ---
# LOG_LEVEL=info # debug, info, warn, error (defaults to info)
🚀 Running the Server (as a Process)
Run this server directly using Bun. The AI Client (like Cursor) will typically start and manage this command for you.
- To run manually (for testing):
bun run src/index.ts
- Manual Development Mode:
bun run --watch src/index.ts
Testing with fastmcp
CLI Tools
- Interactive Terminal:
bunx fastmcp dev src/index.ts
- Web UI Inspector:
bunx fastmcp inspect src/index.ts
🔌 Connecting with AI Clients (Cursor, Claude Desktop)
Configure your AI Agent (MCP Client) to execute this server script via its command/args mechanism.
Cursor AI - Detailed Example
-
Open Cursor Settings/Preferences (Cmd+, or Ctrl+,).
-
Navigate to "Extensions" -> "MCP".
-
Click "Add MCP Server" or edit
settings.json
. -
Add the following JSON configuration:
// In Cursor's settings.json or MCP configuration UI { "mcpServers": { "fast-postgres-mcp": { // Unique name for Cursor "description": "MCP Server for PostgreSQL DBs (Main, Reporting)", "command": "bun", // Use 'bun' or provide absolute path: "/Users/your_username/.bun/bin/bun" "args": [ "run", // *** CRITICAL: ABSOLUTE PATH to your server's entry point *** "/Users/your_username/projects/fast-postgres-mcp/src/index.ts" // CHANGE THIS ], "env": { // .env file in project dir is loaded automatically by Bun. // Add overrides or Cursor-specific vars here if needed. }, "enabled": true } } }
-
Save and Restart Cursor or "Reload MCP Servers".
-
Verify connection in Cursor's MCP status/logs.
Claude Desktop
- Locate and edit
config.json
(see previous README for paths). - Add a similar entry under
mcpServers
, using the absolute path inargs
. - Restart Claude Desktop.
🛠️ MCP Capabilities Exposed
Authentication (Optional)
- Secures network transports (HTTP/SSE) via
X-API-Key
header matchingMCP_API_KEY
ifENABLE_AUTH=true
. stdio
connections (default for Cursor/Claude) generally bypass this check.
Resources
1. List Database Tables
- URI Template:
db://{dbAlias}/schema/tables
- Description: Retrieves a list of user table names within the specified database alias (typically from the 'public' schema).
- Resource Definition (
addResourceTemplate
):uriTemplate
:"db://{dbAlias}/schema/tables"
arguments
:dbAlias
: (string, required) - Alias of the database (from.env
).
load({ dbAlias })
: Connects to the database, queriesinformation_schema.tables
(filtered for base tables in the public schema, customizable in implementation), formats the result as a JSON string array["table1", "table2", ...]
, and returns{ text: "..." }
.
Example Usage (AI Prompt): "Get the resource db://main/schema/tables
to list tables in the main database."
2. Inspect Table Schema
- URI Template:
db://{dbAlias}/schema/{tableName}
- Description: Provides detailed schema information (columns, types, nullability, defaults) for a specific table.
- Resource Definition (
addResourceTemplate
):uriTemplate
:"db://{dbAlias}/schema/{tableName}"
arguments
:dbAlias
: (string, required) - Database alias.tableName
: (string, required) - Name of the table.
load({ dbAlias, tableName })
: Connects, queriesinformation_schema.columns
for the specific table, formats as JSON string array of column objects, returns{ text: "..." }
.
Example Usage (AI Prompt): "Describe the resource db://reporting/schema/daily_sales
."
Example Request:
{
"tool_name": "schema_tool",
"arguments": {
"tableName": "user_sessions",
"dbAlias": "main"
}
}
Example Response Content (JSON String):
"[{\"column_name\":\"session_id\",\"data_type\":\"uuid\",\"is_nullable\":\"NO\",\"column_default\":\"gen_random_uuid()\"},{\"column_name\":\"user_id\",\"data_type\":\"integer\",\"is_nullable\":\"NO\",\"column_default\":null},{\"column_name\":\"created_at\",\"data_type\":\"timestamp with time zone\",\"is_nullable\":\"YES\",\"column_default\":\"now()\"},{\"column_name\":\"expires_at\",\"data_type\":\"timestamp with time zone\",\"is_nullable\":\"YES\",\"column_default\":null}]"
Tools
Tools receive context
object (log
, reportProgress
, session
).
1. query_tool
Executes read-only SQL queries.
- Description: Safely execute read-only SQL, get results, with execution logging/progress.
- Parameters:
statement
(string),params
(array, opt),dbAlias
(string, opt). - Context Usage:
log.info/debug
, optionalreportProgress
, accesssession
. - Returns: JSON string of the row array.
Example Request:
{
"tool_name": "query_tool",
"arguments": {
"statement": "SELECT product_id, name, price FROM products WHERE category = $1 AND price < $2 ORDER BY name LIMIT 10",
"params": ["electronics", 500],
"dbAlias": "main"
}
}
Example Response Content (JSON String):
"[{\"product_id\":123,\"name\":\"Example Gadget\",\"price\":499.99},{\"product_id\":456,\"name\":\"Another Device\",\"price\":350.00}]"
2. execute_tool
Executes data-modifying SQL statements.
- Description: Safely execute data-modifying SQL, with execution logging.
- Parameters:
statement
(string),params
(array, opt),dbAlias
(string, opt). - Context Usage:
log.info/debug
, accesssession
. - Returns: String indicating rows affected.
Example Request:
{
"tool_name": "execute_tool",
"arguments": {
"statement": "UPDATE users SET last_login = NOW() WHERE user_id = $1",
"params": [54321]
// dbAlias omitted, uses DEFAULT_DB_ALIAS
}
}
Example Response Content (String):
3. transaction_tool
Executes multiple SQL statements atomically.
- Description: Execute SQL sequence in a transaction, with step logging/progress.
- Parameters:
operations
(array of {statement, params}),dbAlias
(string, opt). - Context Usage:
log.info/debug/error
,reportProgress
, accesssession
. - Returns: JSON string summarizing success/failure:
{"success": true, "results": [...]}
or{"success": false, "error": ..., "failedOperationIndex": ...}
.
Example Request:
{
"tool_name": "transaction_tool",
"arguments": {
"operations": [
{
"statement": "INSERT INTO orders (customer_id, order_date, status) VALUES ($1, NOW(), 'pending') RETURNING order_id",
"params": [101]
// Note: Simple version doesn't automatically handle passing RETURNING values between operations.
// More complex workflows might need separate tool calls or enhanced logic.
},
{
"statement": "INSERT INTO order_items (order_id, product_sku, quantity, price) VALUES ($1, $2, $3, $4)",
"params": [/* placeholder for returned order_id */ 9999, "GADGET-X", 2, 49.99]
},
{
"statement": "UPDATE inventory SET stock_count = stock_count - $1 WHERE product_sku = $2 AND stock_count >= $1",
"params": [2, "GADGET-X"]
}
],
"dbAlias": "main"
}
}
Example Success Response Content (JSON String):
"{\"success\":true,\"results\":[{\"operation\":0,\"rowsAffected\":1},{\"operation\":1,\"rowsAffected\":1},{\"operation\":2,\"rowsAffected\":1}]}"
Example Error Response Content (JSON String):
"{\"success\":false,\"error\":\"Error executing operation 2: new row for relation \\\"inventory\\\" violates check constraint \\\"stock_count_non_negative\\\"\",\"failedOperationIndex\":2}"
Server & Session Events
- Uses
server.on('connect'/'disconnect')
for logging client connections. - Can use
session.on(...)
for more granular session event handling if needed.
🔒 Security Considerations
- SQL Injection: Mitigated via parameterized queries. No direct input concatenation.
- Database Permissions: Critical. Assign least privilege to each
DB_<ALIAS>_USER
, including read access toinformation_schema
for schema/table listing resources. - SSL/TLS: Essential for production (
DB_<ALIAS>_SSL=require
or stricter). - Secrets Management: Protect
.env
file (add to.gitignore
). Use secure secret management for production environments (Vault, Doppler, cloud secrets). - Authentication Scope:
authenticate
hook primarily secures network transports.stdio
security relies on the execution environment. - Data Sensitivity: Be aware of data accessible via connections/tools.
- Resource Queries: The queries used for listing tables (
information_schema.tables
) and schemas (information_schema.columns
) are generally safe but rely on database permissions. Ensure the configured users have appropriate read access. Customize the table listing query (e.g., schema filtering) if needed for security or clarity.
📜 License
This project is licensed under the MIT License. See the LICENSE file for details. (Ensure a LICENSE file exists).
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.