Backlog MCP サーバー
About
Backlog MCP サーバー is an MCP server that provides access to the Backlog API, enabling project management, issue tracking, file management, and user information retrieval. It is designed for users who want to interact with Backlog through MCP-compatible clients like Claude Desktop.
Details
- Author
- MCP-Mirror
- Downloads
- 283
- Categories
- Other, Project Management, API
Jump to
- List and view project details using getSpaces and getProjects
- Create, update, and retrieve issues via createIssue, updateIssue, getIssues, and getIssue
- Add comments to issues with addComment
- Search issues by keyword, project, status, or assignee
- Manage attachments (file operations mentioned in features)
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Backlog MCP サーバーCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Obtain a Backlog API key, then set the environment variables BACKLOG_DOMAIN and BACKLOG_API_KEY. For Claude Desktop, add the configuration to claude_desktop_config.json using the npx command shown in the README. To run locally, build with npm run build and start with npm start.
getSpaces
スペース情報の取得
getProjects
プロジェクト一覧の取得
getIssues
課題一覧の取得
getIssue
特定の課題情報の取得
createIssue
課題の追加
getWikiPages
Wikiページ一覧の取得
getUsers
ユーザー一覧の取得
getWebhooks
Webhook一覧の取得
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"backlog mcp \u30b5\u30fc\u30d0\u30fc": {
"backlog": {
"command": "npx",
"args": [
"-y",
"@tmhr1850/backlog-mcp-server"
],
"env": {
"BACKLOG_DOMAIN": "your-domain.backlog.com",
"BACKLOG_API_KEY": "your-api-key"
}
}
}
}
}
McpServers
{
"backlog": {
"command": "npx",
"args": [
"-y",
"@tmhr1850/backlog-mcp-server"
],
"env": {
"BACKLOG_DOMAIN": "your-domain.backlog.com",
"BACKLOG_API_KEY": "your-api-key"
}
}
}
Backlog MCP サーバー
Backlog API へのアクセスを提供する MCP サーバーです。プロジェクト管理、課題追跡、ファイル操作などの機能を利用できます。
機能
- プロジェクト管理: プロジェクト一覧の取得、詳細情報の閲覧
- 課題管理: 課題の作成、更新、検索、コメント追加
- ユーザー管理: ユーザー情報の取得
- ファイル操作: 添付ファイルの管理
- コメント機能: 課題へのコメント追加
- 検索機能: 課題やプロジェクトの検索
ツール
プロジェクト関連
getSpaces
- スペース情報を取得します
- 入力: なし
- 戻り値: スペース情報
getProjects
- プロジェクト一覧を取得します
- 入力: なし
- 戻り値: プロジェクト一覧
課題関連
getIssues
- 課題一覧を取得します
- 入力:
- projectIdOrKey (string): プロジェクト ID またはキー
- offset (number, オプション): 取得開始位置
- count (number, オプション): 取得件数(最大 100)
- sort (string, オプション): ソート順 ('created'または'updated')
- order (string, オプション): ソート方向 ('asc'または'desc')
- 戻り値: 課題一覧
getIssue
- 課題の詳細情報を取得します
- 入力:
- issueIdOrKey (string): 課題 ID またはキー
- 戻り値: 課題の詳細情報
createIssue
- 新しい課題を作成します
- 入力:
- projectId (string/number): プロジェクト ID
- summary (string): 課題の件名
- issueTypeId (string/number): 課題種別 ID
- priorityId (string/number, オプション): 優先度 ID
- description (string, オプション): 課題の詳細
- startDate (string, オプション): 開始日 (YYYY-MM-DD 形式)
- dueDate (string, オプション): 期限日 (YYYY-MM-DD 形式)
- assigneeId (string/number, オプション): 担当者 ID
- 戻り値: 作成された課題の情報
updateIssue
- 既存の課題を更新します
- 入力:
- issueIdOrKey (string): 課題 ID またはキー
- summary (string, オプション): 課題の件名
- description (string, オプション): 課題の詳細
- statusId (string/number, オプション): 状態 ID
- priorityId (string/number, オプション): 優先度 ID
- assigneeId (string/number, オプション): 担当者 ID
- startDate (string, オプション): 開始日 (YYYY-MM-DD 形式)
- dueDate (string, オプション): 期限日 (YYYY-MM-DD 形式)
- 戻り値: 更新された課題の情報
addComment
- 課題にコメントを追加します
- 入力:
- issueIdOrKey (string): 課題 ID またはキー
- content (string): コメント内容
- 戻り値: 追加されたコメントの情報
検索関連
searchIssues
- 課題を検索します
- 入力:
- keyword (string): 検索キーワード
- projectIdOrKey (string, オプション): プロジェクト ID またはキー
- offset (number, オプション): 取得開始位置
- count (number, オプション): 取得件数(最大 100)
- 戻り値: 検索結果の課題一覧
検索構文
課題検索
- keyword: フリーテキスト検索
- projectId: 特定のプロジェクトで絞り込み
- statusId: 状態で絞り込み
- assigneeId: 担当者で絞り込み
例: keyword=バグ statusId=1 assigneeId=12345
セットアップ
API キーの取得
1. Backlog にログイン
2. 個人設定 > API > API キーの発行
3. 発行された API キーをコピー
環境変数の設定
.envファイルに以下の設定を追加します:
```
BACKLOG_DOMAIN=your-domain.backlog.com
BACKLOG_API_KEY=your-api-key
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.




