Northwind PostgreSQL MCP Server
A read-only MCP server that connects Claude to the Northwind sample PostgreSQL database, allowing natural language queries to generate SQL and charts.
README
Northwind PostgreSQL MCP Server
A read-only MCP (Model Context Protocol) server that connects Claude to the Northwind sample PostgreSQL database. Ask Claude natural language questions and it will query the database on your behalf.
What is this?
This project lets Claude act as a data analyst over the Northwind database — a classic sample dataset covering customers, orders, products, employees, and suppliers. Claude can list tables, inspect schemas, run SQL queries, and generate charts, all through a secure read-only connection.
Prerequisites
Before you start, make sure you have the following installed:
| Tool | Version | Download |
|---|---|---|
| Python | 3.11+ | https://www.python.org/downloads |
| Docker Desktop | Latest | https://www.docker.com/products/docker-desktop |
| Node.js (for Claude Code) | 18+ | https://nodejs.org |
Setup
1. Clone the repository
git clone <your-repo-url>
cd postgres_mcp
2. Start the database
Docker Desktop must be running (look for the whale icon in your system tray).
docker compose up -d
On first run this will:
- Pull the
postgres:16image - Download
northwind.sqlfrom GitHub (~2 minutes depending on your connection) - Initialise the database automatically
Verify the database is ready:
docker compose ps
The db service should show healthy.
3. Set up your environment file
cp .env.example .env
The default .env connects to the Docker container:
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/northwind
No changes needed unless you are using a different PostgreSQL instance.
4. Install Python dependencies
pip install -e .
If you get a
hatchlingerror, runpip install hatchlingfirst, then retry.
Alternatively, install dependencies directly without the editable install:
pip install "mcp[cli]>=1.0.0" psycopg2-binary python-dotenv
Connecting to Claude
Option A — Claude Code CLI (recommended)
Install Claude Code if you have not already:
npm install -g @anthropic-ai/claude-code
Register the MCP server:
claude mcp add postgres-northwind \
--env DATABASE_URL=postgresql://postgres:postgres@localhost:5432/northwind \
python /full/path/to/postgres_mcp/server.py
Replace /full/path/to/postgres_mcp with the actual path on your machine.
Verify it was registered:
claude mcp list
Start Claude Code and try it out:
claude
Then ask: "List the tables in my database"
Option B — Claude Desktop (claude.ai)
Open your Claude Desktop config file:
- Windows:
C:\Users\<username>\AppData\Roaming\Claude\claude_desktop_config.json - macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Add the following inside "mcpServers":
{
"mcpServers": {
"postgres-northwind": {
"command": "python",
"args": ["C:\\full\\path\\to\\postgres_mcp\\server.py"],
"env": {
"DATABASE_URL": "postgresql://postgres:postgres@localhost:5432/northwind"
}
}
}
}
Restart Claude Desktop. The MCP tools will appear automatically in new conversations.
Available tools
Once connected, Claude has access to these tools:
| Tool | Description |
|---|---|
list_tables |
Lists all tables in the database |
describe_table |
Shows columns, types, and primary keys for a table |
sample_table |
Returns the first N rows of a table (max 100) |
query |
Runs any SELECT or WITH query (results capped at 500 rows) |
get_schema |
Full schema overview — all tables and columns in one call |
Examples of claude prompts to generate reports from NorthWind DB
- "Show me monthly revenue for 1997, as a bar chart. Include a trend line and highlight the top 3 months."

- "Who are our top 20 customers by total spend? Show a horizontal bar chart and flag any who haven't ordered in 90+ days."

Security
All database access is read-only, enforced at two levels:
- Application level — the
querytool rejects any SQL that does not start withSELECTorWITH - Database level — every connection is opened with
readonly=True, so PostgreSQL itself will reject any write attempt even if the application check were bypassed
Table and column names supplied by users are validated against a strict identifier pattern before being used in queries, preventing SQL injection.
Stopping the database
docker compose down
To also delete the stored data:
docker compose down -v
Troubleshooting
docker compose up fails with "cannot find the file specified"
Docker Desktop is not running. Open it from the Start menu and wait for the whale icon to appear in the system tray before retrying.
pip install -e . fails with a hatchling error
pip install hatchling
pip install -e .
Claude says the MCP server is not connected
- Confirm the database is running:
docker compose ps - Confirm
server.pypath in your MCP config is the full absolute path - Confirm
DATABASE_URLmatches your Docker setup
psycopg2 installation fails on Windows
Use the binary build which has no system dependencies:
pip install psycopg2-binary
Port 5432 is already in use
Another PostgreSQL instance is running locally. Either stop it or change the port in docker-compose.yml:
ports:
- "5433:5432"
Then update your DATABASE_URL to use port 5433.
License
This project is released under the MIT License. You are free to use, modify, and distribute it for personal or commercial purposes, including connecting it to your own business database.
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
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
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.