Skip to the content.

MCPg v0.6.7 — release notes

Released: 2026-07-03 Tool surface: 252 tools across 19 capability buckets Tests: 2741 pass (PG 14 / 15 / 16 / 17 / 18 / 19 / WarehousePG) Runtime: Python 3.14

This is a patch-level bump (0.6.6 → 0.6.7) focused on the client experience: the safety classification now reaches the wire, a curated demo dataset gives new users a rich first five minutes, and the runtime moves to Python 3.14. No tool signatures changed; everything is backward-compatible.

Headline: MCPg’s safety model is now on the wire

Every one of the 252 tools now publishes MCP ToolAnnotations:

Clients like Claude Desktop use these hints to decide which calls to auto-approve — until now MCPg’s “safe by default” story was internal; now it’s visible to every MCP client. The 3 MCP prompts’ arguments all carry wire-visible descriptions too.

Try MCPg in two minutes: the demo dataset

MCPG_DATABASE_URL=postgresql://... mcpg --demo       # seed
MCPG_DATABASE_URL=postgresql://... mcpg --demo-drop  # remove

mcpg --demo seeds a small, deterministic, curated e-commerce dataset (400 customers, 120 products, 3,000 orders, 900 reviews) into an mcpg_demo schema — engineered so the pivotal tools all have something real to find on first contact: an un-indexed foreign key for analyze_query_plan / recommend_indexes, PII-shaped columns for find_sensitive_columns, a camelCase naming violation, searchable review prose, and an optional pgvector embedding column when the extension is installed. The seed is a single transaction, re-seeding refuses rather than clobbers, and --demo-drop only removes a schema carrying the MCPg ownership marker.

The companion guided tour is captured, not written — every output block is a real tool run against the seeded dataset, and integration tests pin the planted findings so the walkthrough can’t silently rot.

Also in this release

Upgrade

pip install --upgrade mcpg
docker pull ghcr.io/devopam/mcpg:0.6.7   # or :latest

No configuration changes required.

Full changelog

See ../CHANGELOG.md [0.6.7] for the complete itemised list.