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 \u0026 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)

