Postgresql Analytics Mcp Server

Created By
Archimedes Marketa month ago
The MCP PostgreSQL Analytics server provides advanced analytics capabilities for PostgreSQL databases, including smart schema exploration, query optimization, index suggestions, and natural language to SQL conversion. It is designed to enhance database performance and accessibility through AI-driven tools.
Overview

PostgreSQL Analytics MCP Server

PostgreSQL Analytics for AI Assistants

Go beyond basic SQL. This MCP server gives your AI assistant deep visibility into PostgreSQL databases: smart schema
exploration, query plan analysis with bottleneck annotations, index optimization suggestions, table health monitoring, referential integrity auditing, and natural language to SQL generation.

Tools

  • explore_schema — Structured schema tree: tables, columns, types, FKs, indexes, row counts, sizes
  • analyze_query — EXPLAIN ANALYZE with human-readable bottleneck annotations (seq scans, disk spills, estimate mismatches)
  • suggest_indexes — Analyze slow queries or entire databases, suggest optimal indexes with CREATE INDEX statements
  • table_stats — Row counts, dead tuples, bloat %, vacuum/analyze history, cache hit ratios
  • find_missing_fks — Detect *_id columns without FK constraints, auto-generate ALTER TABLE suggestions
  • generate_query — Natural language to SQL using actual schema context, with optional execution

Installation

{
  "mcpServers": {
    "postgres": {
      "command": "node",
      "args": ["/path/to/mcp-postgres-analytics/dist/index.js"],                                                           
      "env": {
        "DATABASE_URL": "postgres://user:password@localhost:5432/mydb"                                                     
      }                                                                                                                    
    }
  }                                                                                                                        
}                                                         

Use cases

- Understand a new database in one prompt — full schema with row counts and FK relationships                               
- Optimize slow queries with annotated EXPLAIN ANALYZE output
- Find missing foreign keys across an entire schema in seconds                                                             
                                                                                                                           
License
                                                                                                                           
MIT — full source on archimedes.market                                                                                     
 
---                                                                                                                        
             

Server Config

{
  "mcpServers": {
    "postgres": {
      "command": "node",
      "args": [
        "/path/to/mcp-postgres-analytics/dist/index.js"
      ],
      "env": {
        "DATABASE_URL": "postgres://user:password@localhost:5432/mydb"
      }
    }
  }
}
Project Info
Created At
a month ago
Updated At
a month ago
Author Name
Archimedes Market
Star
-
Language
-
License
-
Category

Recommend Servers

View All
AI Work Market — USDC settlement rails for AI labor on Base Mainnet)
@Dario (DME)

AI Work Market is a USDC escrow protocol on Base Mainnet, designed for autonomous AI agents to find work, post jobs, and settle payments without humans in the loop. This MCP server exposes 10 tools: **Escrow lifecycle** - `create_intent_quote` — get calldata + gas estimate for funding a new escrow intent - `submit_proof_quote` — get calldata for the seller to submit a proof URI - `release_funds_quote` — get calldata for the buyer to release payment (or claim/refund) **x402 single-call binding** - `x402_consume` — replaces the 5-step x402 flow with one HMAC-signed POST that returns a delivery URL **Onboarding & discovery** - `agent_onboard` — generate a signed agent card with marketplace attestation - `agent_search` — tf-idf search over the live agent catalog - `agent_reputation` — server-side reputation from on-chain Released/Refunded/Disputed events **Live state** - `system_status` — live on-chain state (nextIntentId, accumulatedFees, contract balance, owner) - `escrow_rules` — contract semantics, lifecycle, call guides, failure modes - `events_subscribe` — SSE stream of new on-chain intent events All endpoints are serverless (Vercel) and return their schema on GET. No browser, no wallet UI required for an agent to integrate. The protocol takes a 1% commission on every settlement; the rest goes to the seller. The full AgentCard is at `/.well-known/agent-card.json` (A2A-compatible). The OpenAPI 3.0.3 spec is at `/.well-known/openapi.json` with `components.securitySchemes` (none, hmacX402). `robots.txt` allows GPTBot, ClaudeBot, anthropic-ai, PerplexityBot, Google-Extended, Applebot-Extended, CCBot, Amazonbot.

8 hours ago