MariaDB MCP Server

MIT License
5
  • Apple

Integrations

  • Allows querying MariaDB databases to retrieve schema information and execute read-only SQL operations against MariaDB instances.

mcp-server-mariadb

MariaDBからデータを取得するためのMCPサーバーの実装

特徴

リソース

データベースのスキーマリストを公開する

ツール

  • クエリデータベース
    • MariDBに対して読み取り専用操作を実行する

依存

MariaDBをインストールする

  • マック
    • mariadb をインストールすると、以下の OS エラーが発生する可能性があります。mariadb-connector-c をインストールすることで解決できます。
OSError: mariadb_config not found. This error typically indicates that MariaDB Connector/C, a dependency which must be preinstalled, is not found. If MariaDB Connector/C is not installed, see installation instructions If MariaDB Connector/C is installed, either set the environment variable MARIADB_CONFIG or edit the configuration file 'site.cfg' to set the 'mariadb_config' option to the file location of the mariadb_config utility.
  1. brew install mariadb-connector-cを実行します。
  2. echo 'export PATH="/opt/homebrew/opt/mariadb-connector-c/bin:$PATH"' >> ~/.bashrc
  3. 環境変数を設定するexport MARIADB_CONFIG=$(brew --prefix mariadb-connector-c)/bin/mariadb_config
  4. uv add mariadb再度実行します。

Claude Desktopでの使用

設定ファイル

Claude Desktop 構成ファイルへのパス:

  • MacOS : ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows : %APPDATA%\Claude\claude_desktop_config.json
{ "mcpServers": { "mcp_server_mariadb": { "command": "/PATH/TO/uvx" "args": [ "mcp-server-mariadb", "--host", "${DB_HOST}", "--port", "${DB_PORT}", "--user", "${DB_USER}", "--password", "${DB_PASSWORD}", "--database", "${DB_NAME}" ] } } }

: これらのプレースホルダーを実際のパスに置き換えます。

  • /PATH/TO/uvx : uvx実行ファイルへのフルパス
{ "mcpServers": { "mcp_server_mariadb": { "command": "/PATH/TO/uv", "args": [ "--directory", "/YOUR/SOURCE/PATH/mcp-server-mariadb/src/mcp_server_mariadb", "run", "server.py" ], "env": { "MARIADB_HOST": "127.0.0.1", "MARIADB_USER": "USER", "MARIADB_PASSWORD": "PASSWORD", "MARIADB_DATABASE": "DATABASE", "MARIADB_PORT": "3306" } } } }

: これらのプレースホルダーを実際のパスに置き換えます。

  • /PATH/TO/uv : UV実行ファイルへのフルパス
  • /YOUR/SOURCE/PATH/mcp-server-mariadb/src/mcp_server_mariadb : サーバーのソースコードへのパス

ライセンス

この mcp サーバーは MIT ライセンスに基づいてライセンスされています。リポジトリ内の LICENSE ファイルを参照してください。

-
security - not tested
A
license - permissive license
-
quality - not tested

Claude が MariaDB データベースに対して読み取り専用クエリを実行し、自然言語を通じてデータベース スキーマを探索できるようにする MCP サーバー実装。

  1. Features
    1. Resources
    2. Tools
  2. dependency
    1. install mariadb
  3. Usage with Claude Desktop
    1. Configuration File
  4. License
    ID: axor9jvqwx