MCP-PostgreSQL-Ops copilot-instructions.md

Repository instructions for an MCP server that lets AI assistants monitor and operate PostgreSQL databases through natural-language requests. They describe its architecture, database connections, supported PostgreSQL versions, and safety checks.

In plain words
What is it for?
Use them to understand the server structure, change database tools, support multiple databases and PostgreSQL versions, and follow its development workflow.
Why use it?
They help an agent work within the server's database and version-compatibility rules while keeping operations read-only where required.

Instructions file for GitHub Copilot

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/call518/mcp-postgresql-ops/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/call518/MCP-PostgreSQL-Ops

Made for: GitHub Copilot.

Per session 1,932 This file is loaded in full into every session.
When invoked 1,932 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.01932 $0.01932
Opus 5 $0.00966 $0.00966
Sonnet 5 $0.00386 $0.00386
Haiku 4.5 $0.00193 $0.00193

Measured 2d ago against content hash 77c1a14b67e1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

MCP-PostgreSQL-Ops copilot-instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/copilot-instructions.md · 184 lines

How it starts

The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MCP PostgreSQL Operations Server - AI Coding Agent Instructions

Architecture Overview

This is a Model Context Protocol (MCP) server built with FastMCP that provides PostgreSQL database monitoring and operations through natural language queries. The server acts as a safe, read-only bridge between AI assistants and PostgreSQL databases.

Core Components

  • mcp_main.py: Main MCP server with 24+ @mcp.tool() decorated functions
  • functions.py: Database connection layer using asyncpg with multi-database support
  • version_compat.py: PostgreSQL 12-17 version detection and adaptive feature handling
  • prompt_template.md: Comprehensive prompt definitions loaded via @mcp.prompt() decorators
  • Docker stack: PostgreSQL + MCP server + MCPO proxy + Open WebUI integration

Key Patterns

Multi-Database Architecture: All tools accept optional database_name parameter to target specific databases while maintaining a default connection database from POSTGRES_DB env var.

Extension Dependencies: Core functionality requires pg_stat_statements extension; pg_stat_monitor is optional. Always check extension availability with check_extension_exists() before using related tools.

Version-Aware Tools: Use version_compat.py for PostgreSQL 12-17 compatibility. Tools auto-adapt features based on detected version. PostgreSQL 18 is beta and not yet supported - will be added once stable.

Tool Structure: Each MCP tool follows this pattern:

@mcp.tool()
async def get_something(limit: int = 20, database_name: str = None) -> str:
    """Detailed docstring with [Tool Purpose], [Exact Functionality], [Required Use Cases], [Strictly Prohibited Use Cases]"""
    try:
        # Validate inputs (limit constraints: max 1-100)
        # Check extension dependencies if needed
        # Execute queries via functions.py
        # Return formatted table data
    except Exception as e:
        logger.error(f"Failed to...: {e}")
        return f"Error: {str(e)}"

Read the full file on GitHub · 184 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 184 lines · 1,932 tokens per session scan A 77c1a14b67e1

Subscribe to this mod's changes

MCP-PostgreSQL-Ops copilot-instructions.md is an instructions file published in the GitHub repository call518/MCP-PostgreSQL-Ops (161 stars, last pushed 28d ago), licensed MIT. It adds 1,932 tokens to every session, about $0.0097 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.