.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

…/designcomputer/mysql_mcp_server
home/mcp-servers/designcomputer/mysql_mcp_server
designcomputer avatar

mysql_mcp_server

bydesigncomputer· 1 MCP server

Stars

1.3k

Forks

249

Category

Databases

View on GitHub

TL;DR

> Note: MySQL MCP Server supports both standard input/output (STDIO) and Streamable HTTP (SSE) transport modes. The SSE mode is recommended for remote/self-hosted deployments.

How to install mysql_mcp_server?

designcomputer/mysql_mcp_server
$git clone https://github.com/designcomputer/mysql_mcp_server

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mysql_mcp_server by running `git clone https://github.com/designcomputer/mysql_mcp_server`, then use it for the current task and follow its documentation at https://github.com/designcomputer/mysql_mcp_server.

Files · 1

View on GitHub
README.md
1[![Tests](https://github.com/designcomputer/mysql_mcp_server/actions/workflows/test.yml/badge.svg)](https://github.com/designcomputer/mysql_mcp_server/actions)
2[![PyPI - Downloads](https://img.shields.io/pypi/dm/mysql-mcp-server)](https://pypi.org/project/mysql-mcp-server/)
3[![AgentAudit Safe](https://img.shields.io/badge/AgentAudit-safe-brightgreen)](https://www.agentaudit.dev/packages/mysql-mcp-server)
4# MySQL MCP Server
5A Model Context Protocol (MCP) implementation that enables secure interaction with MySQL databases. This server component facilitates communication between AI applications (hosts/clients) and MySQL databases, making database exploration and analysis safer and more structured through a controlled interface.
6 
7> **Note**: MySQL MCP Server supports both standard input/output (STDIO) and Streamable HTTP (SSE) transport modes. The SSE mode is recommended for remote/self-hosted deployments.
8 
9## Deployment options
10- **Hosted** — [Fronteir AI](https://fronteir.ai/mcp/designcomputer-mysql-mcp-server) runs the server for you; no local setup required.
11- **Local** — [Smithery](https://smithery.ai/server/designcomputer/mysql-mcp-server) installs and runs the server on your own machine.
12 
13## Features
14- List available MySQL tables as resources
15- Read table contents
16- Execute SQL queries with proper error handling
17- **Multi-database mode** (Optional `MYSQL_DATABASE`)
18- **SSE/HTTP transport support** (`MCP_TRANSPORT=sse`)
19- **SSH Tunneling support**
20- **Comprehensive schema information**
21- **Table data sampling**
22- Secure database access through environment variables
23- Comprehensive logging
24 
25## Installation
26### Manual Installation
27```bash
28pip install mysql-mcp-server
29```
30 
31### Installing via Smithery
32To install MySQL MCP Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/designcomputer/mysql-mcp-server):
33```bash
34npx -y @smithery/cli install designcomputer/mysql-mcp-server --client claude
35```
36 
37### Installing via Claude Code CLI
38```bash
39claude mcp add --transport stdio designcomputer-mysql_mcp_server uvx mysql_mcp_server
40```
41 
42## Configuration
43Set the following environment variables:
44```bash
45MYSQL_HOST=localhost # Database host
46MYSQL_PORT=3306 # Optional: Database port (defaults to 3306 if not specified)
47MYSQL_USER=your_username
48MYSQL_PASSWORD=your_password
49MYSQL_DATABASE=your_database # Optional: Omit for multi-database mode
50 
51# Advanced Configuration
52MYSQL_SSL_MODE=DISABLED # DISABLED, REQUIRED, VERIFY_CA, VERIFY_IDENTITY
53MYSQL_CONNECT_TIMEOUT=10 # Timeout in seconds
54 
55# Connection behaviour (Optional)
56MYSQL_SQL_MODE=TRADITIONAL # SQL mode applied to the connection (default: TRADITIONAL)
57 
58# Compatibility (Optional)
59MYSQL_CHARSET=utf8mb4
60MYSQL_COLLATION=utf8mb4_unicode_ci
61MYSQL_AUTH_PLUGIN= # e.g., mysql_native_password for older MySQL versions
62MYSQL_USE_PURE=false # Force the pure-Python connector (default: false)
63MYSQL_RAISE_ON_WARNINGS=false # Raise on SQL warnings (default: false)
64 
65# SSE Transport (Optional)
66MCP_TRANSPORT=stdio # stdio or sse
67MCP_SSE_HOST=0.0.0.0 # Listen on all interfaces (required for Docker/hosting)
68PORT=8000 # HTTP port (fallback for MCP_SSE_PORT)
69MCP_SSE_ALLOWED_HOSTS= # Comma-separated allowed Host headers (default: localhost:{port},127.0.0.1:{port})
70 
71# SSH Tunneling (Optional)
72MYSQL_SSH_ENABLE=false # Set to true to enable
73MYSQL_SSH_HOST= # SSH jump host
74MYSQL_SSH_PORT=22 # SSH port
75MYSQL_SSH_USER= # SSH username
76MYSQL_SSH_KEY_PATH= # Path to SSH private key
77MYSQL_SSH_REMOTE_HOST=localhost # Host from the perspective of the jump host
78MYSQL_SSH_REMOTE_PORT=3306
79MYSQL_LOCAL_PORT=3330
80```
81 
82### `.env` file loading
83 
84On startup the server automatically loads a `.env` file via `python-dotenv`, so for local use you can simply:
85 
86```bash
87cp .env.example .env # then edit with your credentials
88```
89 
90The file is read from the **process working directory** (and parent directories), which wo

Preview

designcomputer/mysql_mcp_serverdesigncomputer/mysql_mcp_server

[![Tests](https://github.com/designcomputer/mysql_mcp_server/actions/workflows/test.yml/badge.svg)](https://github.com/designcomputer/mysql_mcp_server/actions)

[![PyPI - Downloads](https://img.shields.io/pypi/dm/mysql-mcp-server)](https://pypi.org/project/mysql-mcp-server/)

[![AgentAudit Safe](https://img.shields.io/badge/AgentAudit-safe-brightgreen)](https://www.agentaudit.dev/packages/mysql-mcp-server)

# MySQL MCP Server

Repodesigncomputer/mysql_mcp_server
TypeMCP Servers
CategoryDatabases
UpdatedJun 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPaiclaude

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. benborla avatarmcp-server-mysqlMCP server for interacting with MySQL databases with write operations supportMCP ServersJul 202659k2.0k