DB Agent MCP Server
Enables secure interaction with MySQL databases through SQL queries, supporting read-only operations without approval and write operations with user confirmation.
README
DB Agent MCP Server
MySQLデータベースにクエリを実行するMCPサーバーです。
セットアップ
1. 依存関係のインストール
bun install
2. 環境変数の設定
.envファイルを作成し、以下の環境変数を設定してください:
# データベース設定(必須)
DB_HOST=localhost
DB_PORT=3306
DB_USER=root
DB_PASS=root
DB_NAME=appdb
# サーバー設定(オプション)
PORT=3000
# 認証設定(オプション)
AUTH_ENABLED=false # 認証を有効にする場合は true
API_KEY=your-secret-api-key # 認証が有効な場合に使用するAPIキー
認証について:
AUTH_ENABLED=false(デフォルト): 認証なしで動作します(開発環境向け)AUTH_ENABLED=true: 認証が有効になります。この場合、API_KEYの設定が必須です- 認証が有効な場合、リクエストには以下のいずれかの方法でAPIキーを含める必要があります:
Authorization: Bearer <API_KEY>ヘッダーAuthorization: ApiKey <API_KEY>ヘッダーX-API-Key: <API_KEY>ヘッダー
3. MySQLデータベースの起動
docker build -t local-mcp-mysql ./docker/mysql
docker run -d \
-p 3306:3306 \
--name mcp-mysql \
-e MYSQL_ROOT_PASSWORD=root \
local-mcp-mysql
docker exec -it mcp-mysql mysql -uroot -proot appdb
Dockerコンテナの停止・削除
コンテナを停止する場合:
docker stop mcp-mysql
コンテナを停止して削除する場合:
docker stop mcp-mysql
docker rm mcp-mysql
コンテナを停止せずに削除する場合(強制削除):
docker rm -f mcp-mysql
4. MCPサーバーの起動
HTTPサーバーとして起動します:
bun run start
デフォルトでhttp://localhost:3000/mcpで起動します。ポートを変更する場合は環境変数PORTを設定してください。
PORT=8080 bun run start
認証について:
- デフォルトでは認証が無効(
AUTH_ENABLED=false)です - 本番環境では
AUTH_ENABLED=trueとAPI_KEYを設定して認証を有効にしてください
5. MCPクライアントの設定
Cursorの場合
認証が無効な場合(開発環境):
Cursorの設定ファイル(~/.cursor/mcp.json または設定UI)に以下を追加:
{
"mcpServers": {
"db-agent": {
"url": "http://localhost:3000/mcp"
}
}
}
認証が有効な場合(本番環境):
headersセクションを使用してAPIキーを指定します。以下のいずれかの方法を使用できます:
方法1: X-API-Keyヘッダーを使用
{
"mcpServers": {
"db-agent": {
"url": "http://localhost:3000/mcp",
"headers": {
"X-API-Key": "your-secret-api-key"
}
}
}
}
方法2: Authorizationヘッダーを使用(Bearer形式)
{
"mcpServers": {
"db-agent": {
"url": "http://localhost:3000/mcp",
"headers": {
"Authorization": "Bearer your-secret-api-key"
}
}
}
}
方法3: Authorizationヘッダーを使用(ApiKey形式)
{
"mcpServers": {
"db-agent": {
"url": "http://localhost:3000/mcp",
"headers": {
"Authorization": "ApiKey your-secret-api-key"
}
}
}
}
Claude Desktopの場合
認証が無効な場合(開発環境):
~/Library/Application Support/Claude/claude_desktop_config.json に以下を追加:
{
"mcpServers": {
"db-agent": {
"url": "http://localhost:3000/mcp"
}
}
}
認証が有効な場合(本番環境):
headersセクションを使用してAPIキーを指定します:
{
"mcpServers": {
"db-agent": {
"url": "http://localhost:3000/mcp",
"headers": {
"X-API-Key": "your-secret-api-key"
}
}
}
}
または
{
"mcpServers": {
"db-agent": {
"url": "http://localhost:3000/mcp",
"headers": {
"Authorization": "Bearer your-secret-api-key"
}
}
}
}
重要: MCPサーバーを起動してから、CursorやClaude Desktopを再起動してください。
使用方法
MCPクライアントから以下の2つのツールを使用してSQLクエリを実行できます。
run_query_readonly - 読み取り専用クエリ(承認不要)
SELECT、SHOW、DESCRIBE、DESC、EXPLAINクエリを実行します。このツールは承認を求めません。
例:
SELECT * FROM users LIMIT 10;SELECT COUNT(*) FROM sessions;SHOW TABLES;DESCRIBE users;EXPLAIN SELECT * FROM users;
run_query_write - 書き込みクエリ(承認必要)
INSERT、UPDATE、DELETE、CREATE、DROP、ALTERなどの書き込み操作を実行します。このツールはユーザーの承認を求めます。
例:
INSERT INTO users (name, email) VALUES ('John', 'john@example.com');UPDATE users SET name = 'Jane' WHERE id = 1;DELETE FROM sessions WHERE expired_at < NOW();CREATE TABLE products (id INT PRIMARY KEY, name VARCHAR(255));
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.