This MCP server provides read-only access to PostgreSQL databases, enabling LLMs to inspect database schemas and execute read-only queries. It's designed to allow AI assistants like Claude to interact with PostgreSQL databases in a controlled, secure manner.
You can run the PostgreSQL MCP server using either Docker or NPX.
To use the server with Docker:
docker run -i --rm mcp/postgres postgresql://host:port/db-name
Note for macOS users: When running Docker on macOS, use host.docker.internal
in place of localhost
if the server is running on the host network:
docker run -i --rm mcp/postgres postgresql://host.docker.internal:5432/db-name
Alternatively, you can run the server directly with NPX:
npx -y @modelcontextprotocol/server-postgres postgresql://localhost/db-name
Replace /db-name
with your actual database name.
To use this PostgreSQL MCP server with the Claude Desktop app, you'll need to add configuration to your claude_desktop_config.json
file.
Add the following to the "mcpServers" section of your config file:
{
"mcpServers": {
"postgres": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/postgres",
"postgresql://host.docker.internal:5432/mydb"]
}
}
}
Alternatively, use NPX configuration:
{
"mcpServers": {
"postgres": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres",
"postgresql://localhost/mydb"
]
}
}
}
To include username and password authentication, add them to the PostgreSQL URL:
postgresql://username:password@host:port/db-name
The PostgreSQL MCP server offers:
Execute read-only SQL queries against your database:
sql
(string) containing the SQL query to executeThe server automatically provides schema information for all tables:
postgres://<host>/<table>/schema
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.