mcp-server-mysql-schema
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-server-mysql-schemashow columns of users table in myapp"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-server-mysql-schema
MySQL Schema MCP Server — explore tables, columns, foreign keys, indexes, and relationships through the Model Context Protocol. Works with opencode, Claude Desktop, Cursor, and any MCP-compatible AI client.
No more writing SHOW TABLES and DESCRIBE manually. Ask your AI assistant "what tables are in this database?", "show me the foreign keys of the orders table", or "find all columns named 'status'" — and get structured JSON responses.
Quick Start
# Install
npx mcp-server-mysql-schema
# Or clone
git clone git@github.com:rendi-febrian/mcp-server-mysql-schema.git
cd mcp-server-mysql-schema
npm install && npm run buildopencode Configuration
{
"mcp": {
"mysql-schema": {
"type": "local",
"command": ["node", "/path/to/mcp-server-mysql-schema/dist/index.js"],
"environment": {
"MYSQL_HOST": "127.0.0.1",
"MYSQL_PORT": "3306",
"MYSQL_USER": "root",
"MYSQL_PASS": "your-password"
},
"enabled": true
}
}
}Claude Desktop / Cursor / Other MCP Clients
{
"mcpServers": {
"mysql-schema": {
"command": "node",
"args": ["/path/to/mcp-server-mysql-schema/dist/index.js"],
"env": {
"MYSQL_HOST": "127.0.0.1",
"MYSQL_PORT": "3306",
"MYSQL_USER": "root",
"MYSQL_PASS": "your-password"
}
}
}
}Related MCP server: MCP MySQL Server
Features
Tools
Tool | Description | Example |
| List all non-system databases with charset |
|
| All tables — engine, row count, auto-increment, comments |
|
| All views in a database |
|
| Columns: type, nullable, default, key, extra, comment |
|
| FK relationships — all DB, per-table, incoming/outgoing |
|
| Indexes: name, columns, seq, unique, type, comment |
|
| Full PK/FK map across all tables |
|
| Search table and column names by keyword |
|
Resources
URI | Content |
| All tables in the database |
| Full relationship map |
| Column details |
| Index details |
| Foreign key details |
Security
100% read-only. Every query targets information_schema only. No SELECT on user tables. No INSERT, UPDATE, DELETE, or DDL. The server cannot modify any data.
Why Not Just Use MySQL MCP?
MySQL MCP | Schema MCP (this) | |
Purpose | Run arbitrary SQL | Introspect database structure |
Query target | Any table / any query |
|
Write access | Optional (configurable) | Never |
Structured tools | Single | 8 focused tools |
Resources | Table-level | Table + FK + relationship maps |
Best for | Data CRUD, ad-hoc queries | Schema discovery, ERD, migrations |
Requirements
Node.js >= 18
MySQL 5.7+ or MariaDB 10.2+
MySQL user with
SELECToninformation_schema(default)
Environment Variables
Variable | Required | Default | Description |
| No |
| MySQL host |
| No |
| MySQL port |
| No |
| MySQL user |
| No |
| MySQL password |
| No | — | Default database for resource URIs |
Architecture
src/
├── index.ts # MCP server entry point (raw Server)
├── db.ts # MySQL connection pool
├── schema.ts # information_schema queries
├── tools/
│ ├── tables.ts # schema_databases, schema_tables, schema_views
│ ├── detail.ts # schema_table_detail
│ ├── foreignKeys.ts # schema_foreign_keys
│ ├── indexes.ts # schema_indexes
│ ├── relationships.ts # schema_relationships
│ └── search.ts # schema_search
└── resources/
└── index.ts # schema:// URIsNo ORM, no migrations, no configuration files — just raw information_schema queries over mysql2.
Contributing
See CONTRIBUTING.md.
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rendi-febrian/mcp-server-mysql-schema'
If you have feedback or need assistance with the MCP directory API, please join our Discord server