Skip to main content
Glama
PhySci

PostgreSQL MCP Server

by PhySci

Postgres MCP server

An FastMCP-based MCP server for PostgreSQL metadata (table lists, etc.). Default transport is stdio (for Cursor/IDE); with HTTP transport, GET /health is available.

Requirements: Python 3.14+, uv, and a running PostgreSQL instance.

List of available tools

  1. get_all_tables - list all tables in the DB;

  2. get_table_columns - list all columns in the specified table;

  3. get_table_primary_key - list table primary key;

  4. get_table_foreign_keys - list table foreign key.

Related MCP server: PostgreSQL MCP Server

Install

git clone <url> mccp && cd mccp
uv sync

Database configuration

Init file

By default, env/local.ini is read (path is relative to the repo root, not the current working directory). Copy the example and set your values:

db_host=localhost
db_port=5432
db_name=your_db
db_user=postgres
db_password=secret

Env variables

The same settings can be passed via environment variables DB_HOST, DB_PORT, DB_NAME, DB_USER, DB_PASSWORD

CLI flags

Or use CLI flags --db_host, --db_port, etc. (see python src/main.py --help).

Run the server

uv run python src/main.py -t stdio

Other FastMCP transports: -t http, -t sse, and so on. Logs go to a file (default logs/mccp.log); override with --log_file.

For quick DB checks without MCP, use uv run python src/r.py — it uses the same config and calls the tools directly.

Tests

uv run python -m unittest src.tests.process_stdio -v

These integration tests spawn src/main.py as a stdio subprocess; you need a reachable database configured in env/local.ini.

Install Server
A
license - permissive license
C
quality
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    F
    maintenance
    A Model Context Protocol server providing dual transport (HTTP and Stdio) access to PostgreSQL databases, allowing AI assistants to query databases and fetch schema information through natural language.
    Last updated
    91
    31
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    Provides access to PostgreSQL database schemas and metadata, allowing MCP-compatible tools like Cursor to explore database structure, inspect table schemas, and understand relationships.
    Last updated
    5
    53
    ISC
  • A
    license
    -
    quality
    C
    maintenance
    An open-source MCP server for PostgreSQL schema introspection and guarded read-only queries. It enables MCP clients to discover schemas, tables, columns, indexes, relationships, and safe queryable data from a configured PostgreSQL database.
    Last updated
    30
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    MCP server for PostgreSQL that enables Cursor and other MCP clients to execute SQL queries, list tables, and explore database schemas via HTTP.
    Last updated
    853
    MIT

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/PhySci/mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server