MCP-MySQL-Ops copilot-instructions.md

MCP-MySQL-Ops copilot-instructions.md is an instructions file for GitHub Copilot from call518/MCP-MySQL-Ops. It costs 1,958 tokens per session, scanned A, original, MIT.

Read-only instructions for an MCP server that lets an AI assistant monitor and operate MySQL databases through natural-language requests. MySQL is a database system; MCP is a standard way for AI tools to connect to other software.

In plain words
What is it for?
Use them when working with database monitoring, performance information, schema information, supported-version checks, or the server’s Docker setup.
Why use it?
They help an agent use the server correctly across multiple databases and account for differences between MySQL versions, including its uppercase column names.

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-mysql-ops/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/call518/MCP-MySQL-Ops

Made for: GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for MCP-MySQL-Ops copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/call518/mcp-mysql-ops/copilot-instructions.svg)](https://agentmods.dev/instructions/call518/mcp-mysql-ops/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/call518/mcp-mysql-ops/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/call518/mcp-mysql-ops/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,958 This file is loaded in full into every session.
When invoked 1,958 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.01958 $0.01958
Opus 5 $0.00979 $0.00979
Sonnet 5 $0.00392 $0.00392
Haiku 4.5 $0.00196 $0.00196

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

Security

Grade A, and why

MCP-MySQL-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 5d 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 · 189 lines

How it starts

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

MCP MySQL Operations Server - AI Coding Agent Instructions

Architecture Overview

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

Core Components

  • mcp_main.py: Main MCP server with 19+ @mcp.tool() decorated functions
  • functions.py: Database connection layer using aiomysql with multi-database support
  • version_compat.py: MySQL 5.7.9+ and 8.0+ version detection and adaptive feature handling (MIN_SUPPORTED_VERSION = 5.7.9 is enforced via ensure_min_supported_version)
  • prompt_template.md: Comprehensive prompt definitions loaded via @mcp.prompt() decorators
  • Docker stack: MySQL + 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 MYSQL_DATABASE env var.

Performance Schema Integration: Core functionality leverages MySQL's Performance Schema and Information Schema. Tools automatically detect available features and adapt accordingly.

Version-Aware Tools: Use version_compat.py for MySQL 5.7.9+/8.0+ compatibility. Tools auto-adapt features based on detected version, and ensure_min_supported_version() raises UnsupportedMySQLVersionError for servers older than 5.7.9 (which lack performance_schema.processlist). MySQL 8.0+ recommended for enhanced capabilities.

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)
        # 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 · 189 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. 5d ago First seen · 189 lines · 1,958 tokens per session scan A 77235ddc6a57

Subscribe to this mod's changes

MCP-MySQL-Ops copilot-instructions.md is an instructions file published in the GitHub repository call518/MCP-MySQL-Ops (2 stars, last pushed 1mo ago), licensed MIT. It adds 1,958 tokens to every session, about $0.0098 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-31.