Set up PostgreSQL MCP in VS Code
Query and interact with PostgreSQL databases, inspect schemas, and run SQL directly from your AI editor.
1
Locate the config file
VS Code reads MCP server configuration from the following file:
.vscode/settings.json → mcp sectionCreate this file if it does not already exist. For VS Code, this is inside your workspace .vscode/settings.json file under the mcp section.
2
Add the configuration
Add the following to your VS Code config file:
json
{
"servers": {
"postgres-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres",
"postgresql://localhost/mydb"
],
"env": {
"POSTGRES_CONNECTION_STRING": "YOUR_POSTGRES_CONNECTION_STRING"
}
}
}
}3
Set up environment variables
PostgreSQL MCP requires the following environment variables:
POSTGRES_CONNECTION_STRINGRequiredPostgreSQL connection string (e.g. postgresql://user:pass@localhost:5432/mydb)
4
Verify it works
Restart VS Code. PostgreSQL MCP should appear in your MCP server list with 8 tools available.
This server adds approximately 4,120 tokens to your context window for tool definitions.