mcp-server-backlog
0
The mcp-server-backlog project is designed as an MCP server allowing easy management of backlog API keys. It is capable of being run with different access permissions and is optimized for both development and production environments.
mcp-server-backlog
TODO
- フラグ渡すとこリファクタ
- apikey を CLI から渡せるようにする
- spaceId ふくめ、URL を CLI から渡せるようにする
How to use
Setup
Set Backlog Api Key to apikey
file in the project root.
Dependencies install & Build
npm install
npm run build
Add MCP Server to Claude Code
claude mcp add backlog node /path/to/mcp-server-backlog/dist/index.js -- --permission READ
Running the Server
# Development mode with permission flag
npm run dev -- --permission READ
# Production mode with permission flag (after build)
node /path/to/mcp-server-backlog/dist/index.js --permission READ
Permission Levels
READ
: Read-only access (can only use GET endpoints)MUTATE
: Full access (can use all endpoints including POST, PUT, PATCH, DELETE)