@duongkhuong/mcp-backlog
v1.0.0
Published
MCP server for Backlog API integration with AI agents.
Readme
Backlog MCP Server
A Model Context Protocol (MCP) server for interacting with Backlog (backlog.com / backlog.jp).
Features
This server provides tools to:
- Attachments: List and get attachments.
- Categories: List and get categories.
- Versions: List and get versions. ...
Installation
Clone and Install Dependencies:
npm installBuild the Project:
npm run build
Configuration
You need a Backlog API Key. You can generate one in your Backlog Personal Settings > API.
Usage with Claude Desktop
Add the following configuration to your claude_desktop_config.json:
{
"mcpServers": {
"backlog": {
"command": "npx",
"args": ["-y", "@duongkhuong/mcp-backlog"],
"env": {
"BACKLOG_HOST": "your-space-id.backlog.com",
"BACKLOG_API_KEY": "your_api_key_here"
}
}
}
}Usage with Coplilot
Add the following configuration to your .vscode/mcp.json:
{
"servers": {
"backlog": {
"command": "npx",
"args": ["-y", "@duongkhuong/mcp-backlog"],
"env": {
"BACKLOG_HOST": "your-space-id.backlog.com",
"BACKLOG_API_KEY": "your_api_key_here"
}
}
}
}