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.
7 дней бесплатно · без карты · EU-хостинг
Спроси MySQL что угодно
Попробуй реальный промпт против MySQL / MariaDB via AnythingMCP — Claude вызывает tools, возвращает ответ. Нажми Enter на своём сообщении, чтобы установить в Cloud.
Установить MySQL в CloudClaude — это AI, он может ошибаться. Проверяйте ответы.
Настройка за 2 минуты
- 1Запусти free trial на cloud.anythingmcp.com.
- 2Нажми MySQL / MariaDB в коннектор-сторе. Вставь учётные данные.
- 3Выпусти MCP API ключ и направьте AI-клиент на MCP URL.
Гиды по MySQL
Пошаговая настройка для основных AI-клиентов.
Настройка MySQL / MariaDB
Прямо из определения коннектора: где взять учётные данные, какие права им нужны и с каким API работает этот адаптер. Предоставлено автором коннектора на английском языке.
Setup
- Create a dedicated user and grant it only SELECT:
NarrowCREATE USER 'amcp_reader'@'%' IDENTIFIED BY 'change-me'; GRANT SELECT ON sales.* TO 'amcp_reader'@'%'; FLUSH PRIVILEGES;'%'to the AnythingMCP host if you can — MySQL's host part of the account name is a real access control and worth using. - Set
MYSQL_HOST,MYSQL_PORT(3306),MYSQL_DATABASE,MYSQL_USERandMYSQL_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.
In MySQL a schema is a database. information_schema.tables.table_schema holds the database name, so the listing below is scoped to the one database you configured rather than to a schema inside it.
How a database connector behaves
- It installs read-only. The engine rejects anything that is not a read until you flip the switch in the connector's settings. That is a guard rail, not a security boundary: give the connection a database role that is itself read-only, and the guard rail never has to matter.
- Credentials live in the encrypted
authConfig, not in the connection string.MYSQL_USERandMYSQL_PASSWORDare stored encrypted and spliced into the DSN at call time; the host and database name are stored in the plaintextbaseUrlcolumn. - Results are capped at 1000 rows. A query that would return more comes back truncated with a flag. Aggregate in SQL rather than in the agent.
- A statement runs exactly as written. There is no query rewriting and no automatic LIMIT — an unbounded scan on a large table is a real unbounded scan on your production database. Say LIMIT.
Reachable from where?
- On AnythingMCP Cloud the server must accept connections from the public internet, which for a production database usually means it should not. Point the connector at a read replica, or self-host AnythingMCP inside the network.
- Self-hosted, add the host to
SSRF_ALLOWED_HOSTS: the outbound guard blocks private address space by default, and10.0.0.5is exactly the shape it is there to block.
Твой AI в двух кликах от MySQL / MariaDB.
Установи коннектор, вставь учётные данные, спроси AI. 7 дней бесплатно, без карты.