shueisha-arts-and-digital/backlog-mcp-server
If you are the rightful owner of backlog-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The backlog-mcp-server is a model context protocol server designed to interact with the Backlog API, providing seamless access to various project management functionalities.
公式の backlog-mcp-serverがリリースされましたのでそちらをご利用ください。
Requirements
- Nodejs 20 以上, NPM 10 以上
機能
Install
- 下記のように backlog-mcp-server の設定を追加します。
- BACKLOG_API_KEY は、https://your-space.backlog.jp/EditApiSettings.action
- BACKLOG_DOMAIN は、 https://your-space.backlog.jp ならば、your-space.backlog.jp です
{
"mcpServers": {
"backlog": {
"autoApprove": [
"get_issue",
"get_issue_comments",
"get_issue_attachments",
"get_issue_attachment",
"get_issue_shared_files",
"get_issue_types"
],
"disabled": false,
"timeout": 60,
"command": "npx",
"args": [
"-y",
"https://github.com/shueisha-arts-and-digital/backlog-mcp-server"
],
"env": {
"BACKLOG_DOMAIN": "your-space.backlog.jp",
"BACKLOG_API_KEY": "****"
},
"transportType": "stdio"
}
}
}