.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/benborla/mcp-server-mysql
home/mcp-servers/benborla/mcp-server-mysql
benborla avatar

mcp-server-mysql

bybenborla· 1 MCP server

Installs

59k

Stars

2.0k

Forks

243

Category

Databases

View on GitHub

TL;DR

Using mcp-server-mysql to let your AI query MySQL? **Bloome** brings that to your whole team — an AI-agent IM platform where AI agents are members of the chat. Connect your MCP tools and have agents inspect schemas, run queries, and answer

How to install mcp-server-mysql?

benborla/mcp-server-mysql
$git clone https://github.com/benborla/mcp-server-mysql

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mcp-server-mysql by running `git clone https://github.com/benborla/mcp-server-mysql`, then use it for the current task and follow its documentation at https://github.com/benborla/mcp-server-mysql.

Files · 1

View on GitHub
README.md
1# MCP Server for MySQL
2 
3[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/benborla/mcp-server-mysql)](https://archestra.ai/mcp-catalog/benborla__mcp-server-mysql)
4 
5## Sponsor — Bloome
6 
7[![Bloome](assets/bloome.png)](https://bloome.im/login?ref=2x7GfeSw)
8 
9Using mcp-server-mysql to let your AI query MySQL? [**Bloome**](https://bloome.im/login?ref=2x7GfeSw) brings that to your whole team — an AI-agent IM platform where AI agents are members of the chat. Connect your MCP tools and have agents inspect schemas, run queries, and answer data questions for everyone in one thread. Zero local setup, runs in the cloud, on web and mobile.
10 
11---
12 
13MCP server that gives Claude and other LLMs access to MySQL — inspect schemas, run queries, and optionally write data, all through the Model Context Protocol.
14 
15## Key Features
16 
17- **Read-only by default** — write operations opt-in via env flags
18- **Claude Code integration** — optimized for Anthropic's Claude Code CLI
19- **SSH tunnel support** — built-in support for remote databases
20- **Multi-DB mode** — query across multiple databases without reconnecting
21- **Schema-specific permissions** — per-database read/write control
22- **PII redaction** — automatic masking of sensitive data in results
23- **Remote mode** — HTTP transport with bearer token auth
24- **SSL/TLS support** — encrypted connections with mTLS option
25 
26## Requirements
27 
28- Node.js v20+
29- MySQL 5.7+ (8.0+ recommended)
30- MySQL user with appropriate privileges
31 
32## Quick Install
33 
34**Claude Code (simplest):**
35 
36```bash
37claude mcp add mcp_server_mysql \
38 -e MYSQL_HOST="127.0.0.1" \
39 -e MYSQL_PORT="3306" \
40 -e MYSQL_USER="root" \
41 -e MYSQL_PASS="your_password" \
42 -e MYSQL_DB="your_database" \
43 -- npx @benborla29/mcp-server-mysql
44```
45 
46**Claude Desktop / other clients:**
47 
48```json
49{
50 "mcpServers": {
51 "mcp_server_mysql": {
52 "command": "npx",
53 "args": ["-y", "@benborla29/mcp-server-mysql"],
54 "env": {
55 "MYSQL_HOST": "127.0.0.1",
56 "MYSQL_PORT": "3306",
57 "MYSQL_USER": "root",
58 "MYSQL_PASS": "your_password",
59 "MYSQL_DB": "your_database"
60 }
61 }
62 }
63}
64```
65 
66All write operations are disabled by default. Enable with `ALLOW_INSERT_OPERATION=true`, `ALLOW_UPDATE_OPERATION=true`, `ALLOW_DELETE_OPERATION=true`.
67 
68## Documentation
69 
70- [Installation Guide](docs/INSTALLATION.md) — Smithery, Cursor, Codex, Claude Code, local repo, remote mode
71- [Configuration & Environment Variables](docs/CONFIGURATION.md) — all env vars, advanced config
72- [Multi-DB Mode](README-MULTI-DB.md) — querying multiple databases
73- [PII Redaction](docs/PII-REDACTION.md) — automatic data masking
74- [Testing](docs/TESTING.md) — test setup and running
75- [Troubleshooting](docs/TROUBLESHOOTING.md) — common issues and fixes
76- [Changelog](CHANGELOG.md)
77 
78## Tools & Resources
79 
80**Tool: `mysql_query`**
81Execute SQL queries. Read-only by default. Write operations enabled per flag.
82 
83**Resources: `mysql://tables`**
84Lists all tables and column metadata for the connected database.
85 
86## Contributing
87 
88PRs welcome at [github.com/benborla/mcp-server-mysql](https://github.com/benborla/mcp-server-mysql).
89 
90```bash
91git clone https://github.com/benborla/mcp-server-mysql.git
92pnpm install
93pnpm run build
94pnpm test
95```
96 
97[![Contributors](https://contrib.rocks/image?repo=benborla/mcp-server-mysql)](https://github.com/benborla/mcp-server-mysql/graphs/contributors)
98 
99## License
100 
101MIT — see [LICENSE](LICENSE) for details.

Preview

benborla/mcp-server-mysqlbenborla/mcp-server-mysql

# MCP Server for MySQL

[![Trust Score](https://archestra.ai/mcp-catalog/api/badge/quality/benborla/mcp-server-mysql)](https://archestra.ai/mcp-catalog/benborla__mcp-server-mysql)

## Sponsor — Bloome

[![Bloome](assets/bloome.png)](https://bloome.im/login?ref=2x7GfeSw)

Repobenborla/mcp-server-mysql
TypeMCP Servers
CategoryDatabases
UpdatedJul 2026
LicenseMIT
First seenJul 26, 2026

Tags

MCP

Related

6 picks
Type
  1. rafaelcartenet avatarmcp-databricks-serverModel Context Protocol (MCP) server for Databricks that empowers AI agents to autonomously interact with Unity Catalog metadata. Enables data discovery, lineage analysis, and intelligent SQL execution.MCP ServersMar 20262.4M40
  2. qdrant avatarmcp-server-qdrantAn official Qdrant Model Context Protocol (MCP) server implementationMCP ServersJul 20262.2M1.5k
  3. supabase avatarSupabase MCPQuery databases, manage projects and deploy edge functionsMCP Serverstoday387k2.8k
  4. mongodb-js avatarmongodb-mcp-serverMongoDB Model Context Protocol ServerMCP ServersJul 2026316k1.1k
  5. ahmedmustahid avatarpostgres-mcp-serverMCP server for interacting with PostgreSQL databasesMCP ServersJul 2025279k31
  6. kxsystems avatarkdb-x-mcp-serverMCP server for KDB-XMCP ServersJan 202656k11