MCP.so
ログイン

MySQL MCP Server

@MCP-Mirror

MySQL MCP Server について

Mirror of

基本情報

カテゴリ

データベース

ライセンス

MIT license

ランタイム

node

トランスポート

stdio

公開者

MCP-Mirror

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "SuMiaoALi_mysql-mcp-server": {
      "command": "npx",
      "args": [
        "mysql-mcp-server"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is MySQL MCP Server?

MySQL MCP Server is a Model Context Protocol server that provides secure MySQL database operations for AI assistants and other MCP clients. It exposes database queries and schema introspection as MCP tools and resources.

How to use MySQL MCP Server?

Install via npm install mysql-mcp-server and configure with environment variables (MYSQL_HOST, MYSQL_PORT, MYSQL_USER, MYSQL_PASSWORD, MYSQL_DB, MYSQL_TIMEZONE). Add it to your Claude Desktop config or run directly with npx mysql-mcp-server.

Features of MySQL MCP Server

  • Execute safe SQL queries (SELECT, INSERT, SHOW, DESCRIBE)
  • Get detailed table structure information
  • Insert data with automatic parameterization
  • List all tables in the database
  • Automatic LIMIT clauses on SELECT queries
  • Connection pooling for efficient database management

Use cases of MySQL MCP Server

  • AI assistants answering questions from a MySQL database
  • Automated database schema inspection and documentation
  • Safe, read-mostly database access for chat-based tools
  • Inserting records via natural language instructions
  • Exploring and understanding table structures interactively

FAQ from MySQL MCP Server

What operations are allowed?

Only SELECT, INSERT, SHOW, and DESCRIBE operations are permitted. Destructive operations like UPDATE and DELETE are explicitly forbidden.

How do I configure the server?

Set environment variables for MySQL connection: MYSQL_HOST, MYSQL_PORT, MYSQL_USER, MYSQL_PASSWORD, MYSQL_DB, and MYSQL_TIMEZONE. All have defaults except password and database.

Does the server protect against SQL injection?

Yes. All user inputs are handled with parameterized queries, and SELECT queries automatically get LIMIT clauses to prevent large data dumps.

What are the runtime dependencies?

Node.js 18 or later, TypeScript, and access to a MySQL database. The server uses connection pooling to manage database connections.

How do I test or debug the server?

Run npm run inspector to start the MCP Inspector, which provides a browser URL for testing tools and resources interactively.

コメント

「データベース」の他のコンテンツ