Connector guide2-minute read5 MCP toolsEN · DE · IT

Cómo conectar MySQL / MariaDB a Claude — via MCP

Query a MySQL or MariaDB database directly: list tables, describe columns and run read-only SQL. Installs read-only; credentials are held encrypted rather than in the connection string.

HCBy HelpCode teamActualizado 2 min read Código abierto en GitHub

Sin tarjeta de crédito · 7 días de prueba · Alternativa self-host disponible

MySQL / MariaDB

MySQL / MariaDB

Query a MySQL or MariaDB database directly: list tables, describe columns and run read-only SQL. Installs read-only; credentials are held encrypted rather than in the connection string.

herramientas

5

Región

INTL

Categoría

Databases

Autenticación

Connection string

Env vars requeridas

MYSQL_HOSTMYSQL_PORTMYSQL_DATABASEMYSQL_USERMYSQL_PASSWORD
Instalar con un clic en Cloud

7 días de prueba gratis · Sin tarjeta de crédito

  • Prueba gratis de 7 días
    Sin tarjeta de crédito
  • GDPR & SOC 2 ready
    Datos en la UE, registros de auditoría
  • Código abierto en GitHub
    Open source · AGPL-3.0
  • Funciona con ChatGPT, Claude, Gemini
    Cualquier cliente compatible con MCP

Sáltate la instalación. Funcionando en menos de 2 minutos.

Inicia una prueba gratuita en cloud.anythingmcp.com, añade MySQL / MariaDB con un clic y apunta tu cliente de IA (Claude, ChatGPT, Copilot o Cursor) al endpoint MCP generado. Sin Docker, sin git clone, sin experiencia de desarrollo.

Empezar prueba gratis

Summary

Query a MySQL or MariaDB database directly: list tables, describe columns and run read-only SQL. Installs read-only; credentials are held encrypted rather than in the connection string.

Prueba a pedir

Prompts de ejemplo para MySQL / MariaDB

Haz clic en un prompt para copiarlo. Pégalo en Claude, ChatGPT, Cursor, Gemini, Copilot u OpenClaw para ejecutarlo contra este conector.

MySQL / MariaDB · live vía MCP
Compartir
Opus 4.7

Claude es IA y puede equivocarse. Verifica siempre las respuestas.

💡 ¿Sin instalación? Usa cloud.anythingmcp.com directamente. Inicia sesión, pulsa Connectors → MySQL / MariaDB, pega tus credenciales, genera una MCP API key — listo. Sin Docker, sin git clone, sin servidor local.

MySQL / MariaDB + Claude

Query a MySQL or MariaDB database directly: list tables, describe columns and run read-only SQL. Installs read-only; credentials are held encrypted rather than in the connection string.

Requisitos previos

Las instrucciones de configuración completas están incluidas en el conector (visibles en el store al seleccionarlo). Las variables de entorno requeridas:

MYSQL_HOST, MYSQL_PORT, MYSQL_DATABASE, MYSQL_USER, MYSQL_PASSWORD

Paso 1 — Obtener credenciales

Setup

  1. Create a dedicated user and grant it only SELECT:
    CREATE USER 'amcp_reader'@'%' IDENTIFIED BY 'change-me';
    GRANT SELECT ON sales.* TO 'amcp_reader'@'%';
    FLUSH PRIVILEGES;
    
    Narrow '%' to the AnythingMCP host if you can — MySQL's host part of the account name is a real access control and worth using.
  2. Set MYSQL_HOST, MYSQL_PORT (3306), MYSQL_DATABASE, MYSQL_USER and MYSQL_PASSWORD.

MariaDB works unchanged. The engine also accepts a mariadb:// DSN and normalises it, because the mysql2 driver only understands mysql://. Either scheme reaches a MariaDB server.

…(continued in the in-app connector instructions)

Paso 2 — Instalar el adapter

curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d

Paso 3 — Añadir el conector en Claude

Ruta recomendada — funciona en claude.ai web sin tocar ningún archivo de configuración.

  1. Abre claude.ai/customize/connectors.
  2. Pulsa "Add custom connector".
  3. Rellena:
    • Name: MySQL / MariaDB
    • URL: https://cloud.anythingmcp.com/mcp
    • Authentication: Bearer token → pega tu MCP API key (de AnythingMCP → Profile → MCP API Keys → New Key)
  4. Pulsa Connect para autorizar.

Todas las herramientas debajo aparecen en tu chat — empieza a escribir prompts.

Herramientas disponibles

ToolWhat it does
mysql_list_tablesList the tables and views in the database with their schema and, where the server tracks it, an approximate row count
mysql_describe_tableDescribe one table: every column with its data type, nullability and default
mysql_find_columnsFind columns across every table whose name matches a pattern — the fast way to locate where customer e-mail addresses, IBANs or order number
mysql_queryRun a read-only SQL statement against MySQL / MariaDB and return up to 1000 rows
mysql_query_examplesShow worked example queries for MySQL / MariaDB: how to list schemas, find large tables, inspect indexes and check what is running right now

FAQ

¿Funciona con Claude Code igual que con Claude Desktop? Sí — apunta ambos a https://cloud.anythingmcp.com/mcp.

Siguientes pasos

¿Te ha sido útil esta guía?

Your MySQL / MariaDB agent is one click away.

Install the connector, paste the key, prompt Claude. Free for 7 days, no credit card.

Guías relacionadas