M
MariaDB
Query MariaDB databases and view schemas.
·No reviews yet
Share:
About
Auto-generated
MariaDB is a Model Context Protocol server in the Data & Databases category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about MariaDB.
- What is the MariaDB MCP?
- The MariaDB MCP allows you to query MariaDB databases. It provides an interface to interact with your database instances and view their schemas directly from an MCP client.
- How do I install the MariaDB MCP in an MCP client?
- The MariaDB MCP typically installs as a plugin or extension in your chosen MCP client. Follow the client's specific instructions for adding community-provided MCPs or plugins, which often involves searching for 'MariaDB' in their marketplace or settings.
- Does the MariaDB MCP require an API key or other credentials?
- Yes, this MCP requires an API key for authentication. You will need to obtain or configure this key to connect to your MariaDB instances through the MCP.
- What are the core capabilities of the MariaDB MCP?
- This MCP enables querying MariaDB databases and viewing schemas. It provides a standardized way to execute SQL queries and inspect database structures.
- Is there a cost associated with using the MariaDB MCP?
- The MariaDB MCP is open source and provided by the Community, so the MCP itself is likely free. However, the cost of the underlying MariaDB database service depends on your deployment and provider.
- What are the limitations of the MariaDB MCP?
- This MCP uses the stdio transport for communication. This may limit advanced features or performance compared to direct network connections, depending on the client implementation.
Install MariaDB
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"mariadb": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mariadb"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"mariadb": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mariadb"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"mariadb": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mariadb"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.