Backlog MCP 服务器
这是一个连接到 Backlog 的 API 的 MCP 服务器。它提供搜索、检索和更新问题的功能。
功能
搜索问题
获取问题
更新问题
设置
MCP 配置
将以下内容添加到~/Library/Application Support/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json :
{
"mcpServers": {
"backlog": {
"command": "node",
"args": ["build/index.js"],
"cwd": "/path/to/backlog-mcp-server"
}
}
}
注意:将cwd替换为实际的项目路径。
Docker 环境
开发环境
如果您使用 Docker 容器进行开发和测试:
# .envファイルを作成
cp .env.example .env
# 必要な環境変数を設定
BACKLOG_SPACE_URL=https://your-space.backlog.com
BACKLOG_API_KEY=your_api_key
# 開発モードでビルドと起動
NODE_ENV=development docker compose up -d --build
在开发模式下,它将监视源代码的变化并自动重启。
生产
如果您使用 Docker 容器进行生产:
# .envファイルを作成
cp .env.example .env
# 必要な環境変数を設定
BACKLOG_SPACE_URL=https://your-space.backlog.com
BACKLOG_API_KEY=your_api_key
# 本番モードでビルドと起動
docker compose up -d --build
用作 MCP 服务器
要使用 Docker 容器运行 MCP 服务器,请在您正在使用的应用程序的配置文件中设置以下内容。 Cline 和 RooCline 的示例: cline_mcp_settings.json
{
"mcpServers": {
"backlog": {
"command": "docker",
"args": ["exec", "-i", "backlog-mcp-server", "node", "build/index.js"],
"env": {
"BACKLOG_SPACE_URL": "https://your-space.backlog.com",
"BACKLOG_API_KEY": "your_api_key"
}
}
}
}
其他应用设置方法
克劳德桌面: https://ainow.jp/claude-mcp-guide/
风帆冲浪: https://zenn.dev/y16ra/articles/3ed3e2ae734fa4
光标: https://note.com/shuzon\_ \_/n/na2aafacf7324 →[将 Notion MCP 服务器设置为光标]
示例提示
# 課題の検索
・バックログのPROJECT1-100の課題を説明して
・バックログのPROJECT1のプロジェクトで処理中の課題を教えて
# 課題の更新
・PROJECT1-100の課題のステータスを完了にして
・PROJECT1-100の課題に「〜〜〜」とコメントして
Related MCP Servers
- AsecurityAlicenseAqualityAn MCP server that provides tools for interacting with Linear issue tracking system, currently supporting issue search with plans to expand to issue creation, updates, comments, and project management.Last updated -721MIT License
- AsecurityAlicenseAqualityAn MCP server implementation that integrates with Backlog API, enabling project management operations including issues, projects, and wikis through natural language interactions.Last updated -125,6753MIT License
- AsecurityAlicenseAqualityA Model Context Protocol server that enables AI assistants to interact with Linear project management systems, allowing users to retrieve, create, and update issues, projects, and teams through natural language.Last updated -42331118MIT License
- -securityFlicense-qualityAn MCP server that enables interaction with Google Cloud Logging API, allowing users to write, read, and manage log entries and configurations through natural language.Last updated -