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.
- 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
- Node.js 20 or higher
- PostgreSQL database
- Access credentials for the database
- Clone this repository
- Install dependencies:
npm install
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:
- Create a
.env
file in the project root:
touch .env
- 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"}'
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:
~/.zshrc
~/.bashrc
~/.bash_profile
~/.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:
- Open your preferred shell config file, for example:
nano ~/.zshrc
# or
nano ~/.bashrc
- 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.
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.
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
Start the MCP server:
# Directly with Node.js
node server.js
# Or with npm
npm start
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:
- Test the database connection
- Start the MCP server using stdio transport
- Handle requests from AI models
This server supports the Model Context Protocol (MCP) and integrates with Cursor AI.
This project includes a pre-configured .cursor/mcp.json
file for automatic setup within Cursor.
To manually add this server to Cursor:
- Go to Cursor Settings → Features → MCP
- Click "+ Add New MCP Server"
- 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.
The server provides the following tools to AI models:
query
: Execute SQL queries with retry logic
The server exposes database tables as resources, allowing AI models to:
- List all tables in the database
- View schema information for each table
The server includes:
- Connection retry logic
- Detailed error logging
- Graceful shutdown handling
-
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
- Check if PostgreSQL is running:
-
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
- Make sure your
-
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
- Check your Node.js version:
-
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
- Make sure the
-
"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
-
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
-
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;
-
"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
- Verify that the table exists:
-
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.
MIT