pgtriage
MCP server for PostgreSQL performance auditing. Connect it to Claude Code (or any MCP client) and say "audit my database" to get actionable performance findings with exact fixes.
Not related to the pgAudit logging extension. pgtriage does performance triage, not compliance logging.
Why I built this
Built after diagnosing implicit type casts and missing indexes on multi-million-row tables in production fintech systems. The fixes were simple (one CREATE INDEX CONCURRENTLY statement each), but finding them required reading query plans most engineers never look at. pgtriage automates that diagnostic process and lets any AI client explain the results.
How it works
Any MCP Client (Claude Code / Cursor / Windsurf / VS Code)
| MCP (stdio)
v
pgtriage (data collection + pattern detection)
| psycopg3 (read-only)
v
PostgreSQL database
pgtriage connects to your PostgreSQL database and exposes performance auditing tools via the Model Context Protocol. It collects metrics from PostgreSQL system views, runs deterministic pattern detection, and returns structured findings. The MCP client provides the AI layer, interpreting results and explaining fixes in plain English.
No API keys required. No AI costs. No vendor lock-in. The intelligence comes from your MCP client.
Example output
{
"severity": "high",
"category": "connection_pressure",
"detail": "Connection utilization at 104% (104/100). Approaching max_connections limit.",
"suggested_fix": "Consider using a connection pooler (PgBouncer) or increasing max_connections if RAM allows.",
"evidence": {
"total_connections": 104,
"max_connections": 100,
"utilization_pct": 104.0
}
}
{
"severity": "medium",
"category": "duplicate_index",
"table": "account",
"detail": "Duplicate indexes on 'account': 'account_title_reverse_index' (16 kB) and 'account_group_reverse_index' (16 kB). Same column definition. One can be dropped.",
"suggested_fix": "DROP INDEX CONCURRENTLY account_group_reverse_index;"
}
From a real audit: 118 tables scanned, 88 findings, prioritized by severity.
What it finds
- Sequential scans on large tables with missing index suggestions
- Dead tuple buildup and autovacuum health issues
- Unused and duplicate indexes wasting disk and slowing writes
- N+1 query patterns from pg_stat_statements analysis
- Stale table statistics causing bad query plans
- TOAST table bloat from large JSONB/TEXT columns
- Configuration issues (shared_buffers, work_mem, autovacuum tuning)
- Connection pressure approaching max_connections
- Long-running queries holding locks
Quick start
Install
pip install pgtriage
Configure Claude Code
Add to your MCP settings (.claude/settings.json or project settings):
{
"mcpServers": {
"pgtriage": {
"command": "python",
"args": ["-m", "pgtriage"],
"env": {
"PGTRIAGE_CONNECTION_STRING": "postgres://user:pass@localhost:5432/dbname"
}
}
}
}
Recommended: Use a dedicated read-only database role:
CREATE ROLE pgtriage_reader LOGIN PASSWORD 'secure_password';
GRANT pg_read_all_stats TO pgtriage_reader;
GRANT USAGE ON SCHEMA public TO pgtriage_reader;
GRANT SELECT ON ALL TABLES IN SCHEMA public TO pgtriage_reader;
Use
> audit my database
> check table health for the users table
> are there any unused indexes?
> review my PostgreSQL configuration
> find slow queries
Tools
full_audit
Run a comprehensive performance audit covering table health, slow queries, index health, and configuration. Returns all findings sorted by severity.
check_table_health
Analyze dead tuples, autovacuum stats, sequential scan ratios, and TOAST bloat. Optionally filter to a specific table.
analyze_slow_queries
Pull the slowest queries from pg_stat_statements, run EXPLAIN ANALYZE on each, and detect patterns like sequential scans, stale statistics, and N+1 queries.
check_index_health
Find unused indexes (zero scans), duplicate indexes (same column definition), and tables that likely need indexes based on scan patterns.
check_config
Review PostgreSQL settings (shared_buffers, work_mem, autovacuum_vacuum_scale_factor, random_page_cost, etc.) and flag suboptimal values. Checks connection utilization and long-running queries.
Resources
| Resource | Description |
|---|---|
pgtriage://status |
Connection status, PostgreSQL version, loaded extensions |
pgtriage://tables |
All tables with sizes and approximate row counts |
Requirements
- Python 3.11+
- PostgreSQL 12+
pg_stat_statementsextension (recommended for slow query analysis, not required for other tools)- Database user with read access to
pg_stat_*views
Safety
pgtriage never writes to your database. Three independent layers enforce this:
- Session-level read-only:
SET default_transaction_read_only = trueon every connection. PostgreSQL rejects any write attempt at the server level. - Query validation: EXPLAIN ANALYZE only runs on SELECT statements. INSERT, UPDATE, DELETE, DROP, SELECT INTO, SELECT FOR UPDATE, and stacked queries are all rejected before execution.
- Transaction rollback: Every EXPLAIN ANALYZE runs inside an explicit BEGIN/ROLLBACK block with a 10-second
statement_timeout. Even if layers 1 and 2 somehow fail, nothing is committed and long-running queries are killed.
Additionally:
- Connection strings are never exposed in tool outputs
- All database access is single-connection, no pooling
Development
git clone https://github.com/pgtriage/pgtriage.git
cd pgtriage
python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
pytest
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pgtriage-0.1.2.tar.gz.
File metadata
- Download URL: pgtriage-0.1.2.tar.gz
- Upload date:
- Size: 24.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c5208522882681f17ea40198e127fc9cb780f1b35b2f6a8247063ecafc05802
|
|
| MD5 |
bb0df903fc36ed96e4262cd20daa134d
|
|
| BLAKE2b-256 |
4d2532d16a8e4d1a417f2fec167fb065d5bd2fc306790ef3b076b36da04a7de1
|
Provenance
The following attestation bundles were made for pgtriage-0.1.2.tar.gz:
Publisher:
publish-pypi.yml on pgtriage/pgtriage
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pgtriage-0.1.2.tar.gz -
Subject digest:
7c5208522882681f17ea40198e127fc9cb780f1b35b2f6a8247063ecafc05802 - Sigstore transparency entry: 2402776761
- Sigstore integration time:
-
Permalink:
pgtriage/pgtriage@9bbb99b84d023d997ea4506a33c8b0fe161392d9 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/pgtriage
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9bbb99b84d023d997ea4506a33c8b0fe161392d9 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pgtriage-0.1.2-py3-none-any.whl.
File metadata
- Download URL: pgtriage-0.1.2-py3-none-any.whl
- Upload date:
- Size: 22.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e2d477b6e414b7bba4b37b3e412b55aacdb1bbd0839cb8a5b1493d19fe33a47
|
|
| MD5 |
8f3b170ce5d12f2ecc48a434f2e91d8e
|
|
| BLAKE2b-256 |
21de90ab4f7431db7460bf70a231a675a50ee8be1359e0db4436f9e1f5dddf1b
|
Provenance
The following attestation bundles were made for pgtriage-0.1.2-py3-none-any.whl:
Publisher:
publish-pypi.yml on pgtriage/pgtriage
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pgtriage-0.1.2-py3-none-any.whl -
Subject digest:
3e2d477b6e414b7bba4b37b3e412b55aacdb1bbd0839cb8a5b1493d19fe33a47 - Sigstore transparency entry: 2402776830
- Sigstore integration time:
-
Permalink:
pgtriage/pgtriage@9bbb99b84d023d997ea4506a33c8b0fe161392d9 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/pgtriage
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@9bbb99b84d023d997ea4506a33c8b0fe161392d9 -
Trigger Event:
push
-
Statement type: