# MySQL Database Access

Access your MySQL databases securely and efficiently. List databases, tables, and execute read-only SQL queries without the risk of data modification. Simplify your database interactions with a robus…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add dpflucas/mysql-mcp-server

# Browse available tools
npx -y smithery tool list dpflucas/mysql-mcp-server

# Get full schema for a tool
npx -y smithery tool get dpflucas/mysql-mcp-server list_databases

# Call a tool
npx -y smithery tool call dpflucas/mysql-mcp-server list_databases '{}'
```

## Tools (4)

- `list_databases` — List all accessible databases on the MySQL server
- `list_tables` — List all tables in a specified database
- `describe_table` — Show the schema for a specific table
- `execute_query` — Execute a read-only SQL query

```bash
# Get full input/output schema for a tool
npx -y smithery tool get dpflucas/mysql-mcp-server <tool-name>
```

---

License: MIT
