MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

A custom crafted mcp that connects simultaneously with multiple postgres dbs with a distinct smart-output strategy

Created 4/9/2026
Updated about 19 hours ago
Repository documentation and setup instructions

mcp-postgres

An MCP server that gives AI assistants read-only access to PostgreSQL databases.

Exposed Tools

| Tool | Description | |------|-------------| | pg_list_connections | List all configured connections and their status | | pg_schema | Discover tables, columns, and types for a connection | | pg_query | Execute a read-only SQL query |

All tools support parallel execution — query multiple databases simultaneously.

Install

From source

git clone git@github.com:Jpgomesf/mcp-postgres.git
cd mcp-postgres
make build

From release

Download the binary for your platform from Releases.

Configure

Create config.json next to the binary:

{
  "defaults": {
    "readonly": true,
    "statement_timeout_seconds": 30
  },
  "connections": {
    "my-db": {
      "source": "direct",
      "dsn": "postgres://user:password@localhost:5432/mydb"
    }
  }
}

Four credential sources are supported: direct, env, dotenv, and aws_secrets_manager. See Configuration for details.

Add to Claude Code

{
  "mcpServers": {
    "mcp-postgres": {
      "type": "stdio",
      "command": "/path/to/mcp-postgres"
    }
  }
}

Add to ~/.claude.json (global) or .claude/settings.json (per-project).

Documentation

| Doc | Description | |-----|-------------| | Usage Guide | How to interact with the tools, parallel queries, tips | | Configuration | Credential sources, connection options, validation rules, naming conventions | | Extending | How to add custom credential sources (Vault, GCP, etc.) | | Contributing | Branch strategy, commit conventions, development workflow |

Security

  • Read-only transactions enforced by default
  • DDL/DML keywords blocked before reaching the database
  • Statement timeout prevents runaway queries
  • Credentials resolved at runtime, never logged
  • AWS secrets cached in-memory with 24h TTL

License

MIT

Quick Setup
Installation guide for this server

Installation Command (package not published)

git clone https://github.com/Jpgomesf/mcp-postgres
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.

Cursor configuration (mcp.json)

{ "mcpServers": { "jpgomesf-mcp-postgres": { "command": "git", "args": [ "clone", "https://github.com/Jpgomesf/mcp-postgres" ] } } }