MCP.so
登录

MCP Server for MySQL based on NodeJS

@benborla

关于 MCP Server for MySQL based on NodeJS

A Model Context Protocol server that provides read-only access to MySQL databases. This server enables LLMs to inspect database schemas and execute read-only queries.

基本信息

分类

数据库

许可证

MIT

运行时

node

传输方式

stdio

发布者

benborla

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "mcp_server_mysql": {
      "command": "npx",
      "args": [
        "-y",
        "@benborla29/mcp-server-mysql"
      ],
      "env": {
        "MYSQL_HOST": "127.0.0.1",
        "MYSQL_PORT": "3306",
        "MYSQL_USER": "root",
        "MYSQL_PASS": "password",
        "MYSQL_DB": "your_db",
        "ALLOW_INSERT_OPERATION": "true",
        "ALLOW_UPDATE_OPERATION": "true",
        "ALLOW_DELETE_OPERATION": "true"
      }
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is MCP Server for MySQL based on NodeJS?

This server enables LLMs like Claude to interact with MySQL databases through the Model Context Protocol, allowing inspection of schemas, query execution, and optional write operations. It is designed for developers who want AI agents to query MySQL databases securely, with read-only access by default.

How to use MCP Server for MySQL based on NodeJS?

Install via npx @benborla29/mcp-server-mysql with environment variables for host, port, user, password, and database. For Claude Code, use claude mcp add; for other clients, configure a JSON entry in mcpServers. Write operations are opt-in using ALLOW_INSERT_OPERATION, ALLOW_UPDATE_OPERATION, and ALLOW_DELETE_OPERATION environment flags.

Key features of MCP Server for MySQL based on NodeJS

  • Read-only by default, write operations opt-in
  • Built-in SSH tunnel for remote databases
  • Multi-database mode without reconnecting
  • Automatic PII redaction in results
  • Remote mode with HTTP and bearer token auth
  • SSL/TLS support with mTLS option

Use cases of MCP Server for MySQL based on NodeJS

  • AI assistant executing read-only SQL queries for data analysis
  • Schema inspection and metadata retrieval via mysql://tables resource
  • Secure cross-database queries from a single connection
  • Remote database access through SSH tunnels

FAQ from MCP Server for MySQL based on NodeJS

Is write support enabled by default?

No, all write operations (INSERT, UPDATE, DELETE) are disabled by default. They must be enabled individually via environment flags.

What are the runtime requirements?

Node.js v20+ and MySQL 5.7+ (8.0+ recommended). The MySQL user must have appropriate privileges.

How can I connect to a remote database?

The server includes built-in SSH tunnel support for securely accessing remote MySQL instances.

How do I enable write operations?

Set the environment variables ALLOW_INSERT_OPERATION=true, ALLOW_UPDATE_OPERATION=true, and ALLOW_DELETE_OPERATION=true as needed.

What data can the server access?

By default, it queries the configured database and exposes table metadata via the mysql://tables resource. Schema-specific permissions can be set per database.

评论

数据库 分类下的更多 MCP 服务器