mcp-server-backlog logo

mcp-server-backlog

by kazuhideoki

This server integrates with Backlog to allow Claude to interact with your Backlog projects. It provides an interface for Claude to access and manipulate issues within Backlog.

View on GitHub

Last updated: N/A

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)