Skip to main content

MCP server for PostgreSQL analytics — schema discovery, data exploration, relationships, performance, data quality, multi-env support

Project description

pg-analytics-mcp

An MCP server for PostgreSQL analytics — a general-purpose "DBA-lite" toolkit that gives any MCP client (Claude Code, Cursor, etc.) instant visibility into schema structure, data quality, relationships, performance, and multi-environment comparison.

What it does

Exposes 20 read-only tools (+ 4 optional) organised in 6 categories:

Schema Discovery

  • database_summary — high-level overview: schema/table/view/FK/index counts, total size, extensions
  • scan_schemas — row counts for every table, grouped by schema
  • describe_table — column details: name, type, nullable, default, position
  • table_sizes — disk usage (data + indexes + toast) per table, ordered by size
  • find_tables — search tables by name pattern (ILIKE)
  • find_columns — find tables that have a column matching a pattern
  • list_empty_tables — quickly find tables with 0 rows
  • list_environments — list configured environments

Data Exploration

  • recent_rows — peek at the most recent rows (auto-detects timestamp/PK ordering)
  • column_value_counts — distinct values and frequencies for a column
  • column_stats — min, max, avg, null count, distinct count for a column

Relationships

  • list_constraints — all constraints (PK, unique, check, FK) for a table
  • foreign_keys — bidirectional FK relationships (incoming + outgoing)
  • compare_envs — compare row counts across DEV / STG / PROD

Performance

  • index_usage — index scan stats and unused index detection
  • slow_query_candidates — tables with high sequential scan counts (missing index candidates)
  • bloat_estimate — tables with dead tuples that may need VACUUM

Data Quality

  • table_health — row count + last inserted_at/updated_at for a table
  • null_report — null percentage for every column in a table
  • duplicate_check — find duplicate rows based on a set of columns

Fail Table Tracking (opt-in via PG_FAIL_SCHEMA)

These 4 tools are only registered when PG_FAIL_SCHEMA is set. They discover *_fails tables in the specified schema that have run_id, stage, comment, failed_at columns.

  • pipeline_fail_tables — discover all *_fails tables with row counts and stats
  • pipeline_fail_summary — cross-entity failure summary grouped by entity, stage, or both
  • pipeline_fail_details — drill into a specific entity's fail table with optional filters
  • pipeline_fail_runs — analyse which runs generated the most failures

Quick start

Prerequisites

  • Python 3.12+
  • uv (recommended) or pip
  • One or more PostgreSQL instances

Install

Option A — run directly with uvx (no clone needed):

uvx pg-analytics-mcp

Option B — clone and run:

git clone https://github.com/fabdendev/pg-analytics-mcp.git
cd pg-analytics-mcp
uv sync

Configure

Set environment variables for each PostgreSQL environment (at least one is required):

Variable Description Required
PG_LOCAL_URL PostgreSQL DSN for LOCAL At least one URL
PG_DEV_URL PostgreSQL DSN for DEV At least one URL
PG_STG_URL PostgreSQL DSN for STG Optional
PG_PROD_URL PostgreSQL DSN for PROD Optional
PG_INCLUDE_SCHEMAS Comma-separated allowlist of schemas to scan Optional
PG_IGNORE_SCHEMAS Comma-separated schemas to skip (added to internal exclusions) Optional
PG_FAIL_SCHEMA Schema containing *_fails tables — enables pipeline_fail_* tools Optional
PG_READ_ONLY Reserved for future write tools (not yet used) Optional
export PG_DEV_URL="postgresql://user:pass@host:5432/dbname"
export PG_STG_URL="postgresql://user:pass@host:5432/dbname"   # optional
export PG_PROD_URL="postgresql://user:pass@host:5432/dbname"  # optional

# Schema filtering (optional — pick one, not both)
export PG_INCLUDE_SCHEMAS="core,trading,pipeline"  # only scan these
export PG_IGNORE_SCHEMAS="orion,shared"             # skip these

Supports postgresql+asyncpg:// URLs (the driver prefix is stripped automatically). If both PG_INCLUDE_SCHEMAS and PG_IGNORE_SCHEMAS are set, the include list takes precedence.

Add to Claude Code

Add to your Claude Code MCP settings (~/.claude/settings.json or .mcp.json):

If using uvx:

{
  "mcpServers": {
    "pg-analytics": {
      "command": "uvx",
      "args": ["pg-analytics-mcp"],
      "env": {
        "PG_DEV_URL": "postgresql://user:pass@host:5432/dbname",
        "PG_STG_URL": "postgresql://user:pass@host:5432/dbname"
      }
    }
  }
}

If installed from clone:

{
  "mcpServers": {
    "pg-analytics": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/pg-analytics-mcp", "pg-analytics-mcp"],
      "env": {
        "PG_DEV_URL": "postgresql://user:pass@host:5432/dbname"
      }
    }
  }
}

Security

All tools are read-only. No data is ever modified. Additional safeguards:

  • Identifier validation — all user-provided schema/table/column names are validated against ^[a-zA-Z_][a-zA-Z0-9_]*$ and quoted
  • Row limits — row-level queries capped at 100, aggregation queries at 200
  • Statement timeout — potentially expensive queries (null_report, column_stats, duplicate_check, column_value_counts) use a 30s timeout
  • Direction validation — order_dir restricted to ASC/DESC only

Multi-environment support

Configure up to 4 environments (LOCAL, DEV, STG, PROD). The first configured environment becomes the default. Use compare_envs to quickly spot row count differences across environments.

Development

uv sync --extra dev
uv run ruff check pg_analytics_mcp/    # lint
uv run python -m pg_analytics_mcp      # start server locally

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pg_analytics_mcp-0.5.0.tar.gz (73.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pg_analytics_mcp-0.5.0-py3-none-any.whl (15.2 kB view details)

Uploaded Python 3

File details

Details for the file pg_analytics_mcp-0.5.0.tar.gz.

File metadata

  • Download URL: pg_analytics_mcp-0.5.0.tar.gz
  • Upload date:
  • Size: 73.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pg_analytics_mcp-0.5.0.tar.gz
Algorithm Hash digest
SHA256 cfa5b040dccc5c8e30379bbc9010a3327322fba3179f21b5ff311a967da15c11
MD5 c8daf3b5999a221d53500a8ac1a557d9
BLAKE2b-256 fb99d3131bb3bdaed982b22e0df85cece2e6a3428b587a5723f2656d31ded769

See more details on using hashes here.

File details

Details for the file pg_analytics_mcp-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: pg_analytics_mcp-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 15.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pg_analytics_mcp-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a2a826557b87d65f04c0b52d2ab5b65f6f3d4b8f595f80c48f5ef4be33ce4485
MD5 c21b19e3dccc6b8c58273e7db446db32
BLAKE2b-256 cb409ceda78ddc5f149866f92e5e900794edec8fe8b85b99a7b7ec2f0bf55463

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page