Model Context Protocol PostgreSQL Server

Model Context Protocol PostgreSQL Server

A server that allows AI models to interact with PostgreSQL databases through a standardized protocol, providing database schema information and SQL query execution capabilities.

Category
Visit Server

README

Model Context Protocol PostgreSQL Server

This project implements a Model Context Protocol (MCP) server that connects to a PostgreSQL database. It allows AI models to interact with your database through a standardized protocol.

Features

  • Connects to a PostgreSQL database using connection pooling
  • Implements the Model Context Protocol for AI model interaction
  • Provides database schema information as resources
  • Allows executing SQL queries with retry logic
  • Handles connection errors gracefully

Prerequisites

  • Node.js 20 or higher
  • PostgreSQL database
  • Access credentials for the database

Installation

  1. Clone this repository
  2. Install dependencies:
npm install

Configuration

The server reads database credentials from a .env file in the project root directory. You need to add your database credentials as a JSON string in the DB_CREDENTIALS environment variable:

  1. Create a .env file in the project root:
touch .env
  1. Add the following line with your actual database credentials:
export DB_CREDENTIALS='{"DB_USER":"your-username","DB_PASSWORD":"your-password","DB_HOST":"your-host","DB_PORT":"5433","DB_NAME":"your-database"}'

Fallback to Shell Config Files

If the .env file is not present or the credentials variable is not found, the server will automatically look for the credentials in your shell configuration files in the following order:

  1. ~/.zshrc
  2. ~/.bashrc
  3. ~/.bash_profile
  4. ~/.profile

This is especially useful in environments where shell config files are not automatically sourced, such as the Cursor MCP environment.

To set up credentials in any of your shell config files:

  1. Open your preferred shell config file, for example:
nano ~/.zshrc
# or
nano ~/.bashrc
  1. Add the following line with your actual database credentials:
export DB_CREDENTIALS='{"DB_USER":"your-username","DB_PASSWORD":"your-password","DB_HOST":"your-host","DB_PORT":"5433","DB_NAME":"your-database"}'

The server will automatically detect and use these credentials when the .env file is not available.

Custom Credentials Variable

You can also use a custom environment variable name instead of DB_CREDENTIALS by using the --credentials-var flag when starting the server:

node server.js --credentials-var MY_CUSTOM_DB_CREDS

In this case, you would define MY_CUSTOM_DB_CREDS in your .env file instead.

Combining Options

You can combine different command-line options as needed:

# Use custom credentials and enable verbose mode
node server.js --credentials-var MY_CUSTOM_DB_CREDS --verbose

# Short form also works
node server.js -c MY_CUSTOM_DB_CREDS -v

Usage

Start the MCP server:

# Directly with Node.js
node server.js

# Or with npm
npm start

Logging Options

By default, the server runs in silent mode, displaying only error messages. If you want to see all log messages, you can use the verbose flag:

# With verbose logging
node server.js --verbose

# Or with npm
npm start -- --verbose

You can also use the short flag -v:

node server.js -v

The server will:

  1. Test the database connection
  2. Start the MCP server using stdio transport
  3. Handle requests from AI models

Integration with Cursor

This server supports the Model Context Protocol (MCP) and integrates with Cursor AI.

Automatic Configuration

This project includes a pre-configured .cursor/mcp.json file for automatic setup within Cursor.

Manual Configuration

To manually add this server to Cursor:

  1. Go to Cursor Settings → Features → MCP
  2. Click "+ Add New MCP Server"
  3. Enter the following details:
    • Name: Postgres MCP
    • Type: stdio
    • Command: node /full/path/to/server.js

For more information on MCP integration with Cursor, see the official documentation.

Available Tools

The server provides the following tools to AI models:

  • query: Execute SQL queries with retry logic

Resources

The server exposes database tables as resources, allowing AI models to:

  • List all tables in the database
  • View schema information for each table

Error Handling

The server includes:

  • Connection retry logic
  • Detailed error logging
  • Graceful shutdown handling

Troubleshooting

Connection Issues

  1. Database Connection Failed

    • Check if PostgreSQL is running: pg_isready -h localhost -p 5433
    • Verify your credentials in the .env file are correct
    • Make sure your IP address has access to the database (check pg_hba.conf)
    • Try connecting with another tool like psql to verify credentials
  2. Environment Variable Problems

    • Make sure your .env file is in the project root directory
    • Check that the JSON structure in DB_CREDENTIALS is valid
    • Verify there are no extra spaces or line breaks in the JSON string
    • Test with: node -e "console.log(JSON.parse(process.env.DB_CREDENTIALS))" < .env
  3. Node.js Version Issues

    • Check your Node.js version: node -v
    • This server requires Node.js 20+
    • If using an older version, install Node.js 20: nvm install 20 && nvm use 20

Cursor Integration

  1. Server Not Showing in Cursor

    • Make sure the .cursor/mcp.json file exists and is properly formatted
    • Try restarting Cursor to detect the project-specific configuration
    • Check Cursor logs for any error messages
  2. "Failed to create client" Error

    • This usually indicates the server crashed during startup
    • Run the server manually with verbose logging to see the error: node server.js -v
    • Check if the database credentials are accessible in the Cursor environment
  3. No Tools Available in Cursor

    • Ensure the server is running properly (check logs)
    • Try clicking the refresh button in the MCP tool panel
    • Restart Cursor and try again

PostgreSQL Specific Issues

  1. Permission Denied Errors

    • Make sure the database user has appropriate permissions for the tables
    • Try granting required permissions: GRANT SELECT ON ALL TABLES IN SCHEMA public TO username;
  2. "Relation does not exist" Errors

    • Verify that the table exists: \dt tablename in psql
    • Check if you're connecting to the correct database
    • Ensure the user has access to the schema where the table is located
  3. Performance Issues

    • Large query results may cause lag, consider adding LIMIT clauses
    • Check if your database needs optimization (indexes, vacuuming)

For additional help, you can run the server with verbose logging (-v flag) to see detailed error messages and operation logs.

License

MIT

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured