Backlog MCP Server

by jootsuki

Integrations

  • Used for environment variable management, allowing configuration of Backlog API credentials through .env files

  • Provides containerized deployment options for both development and production environments

  • Referenced as a resource for setting up the Windsurf application with MCP capabilities

Backlog MCP Server

This is an MCP server that connects to Backlog's API. It provides the functionality to search, retrieve, and update issues.

function

  • Search for issues
  • Get an issue
  • Update an issue

set up

MCP Configuration

Add the following to ~/Library/Application Support/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json :

{ "mcpServers": { "backlog": { "command": "node", "args": ["build/index.js"], "cwd": "/path/to/backlog-mcp-server" } } }

Note: Replace cwd with the actual project path.

Docker environment

Development environment

If you use Docker containers for development and testing:

# .envファイルを作成 cp .env.example .env # 必要な環境変数を設定 BACKLOG_SPACE_URL=https://your-space.backlog.com BACKLOG_API_KEY=your_api_key # 開発モードでビルドと起動 NODE_ENV=development docker compose up -d --build

In development mode it will watch for changes in the source code and restart automatically.

Production

If you use Docker containers for production:

# .envファイルを作成 cp .env.example .env # 必要な環境変数を設定 BACKLOG_SPACE_URL=https://your-space.backlog.com BACKLOG_API_KEY=your_api_key # 本番モードでビルドと起動 docker compose up -d --build

Use as an MCP server

To run an MCP server using a Docker container, set the following in the configuration file of the app you are using. Example for Cline and RooCline: cline_mcp_settings.json

{ "mcpServers": { "backlog": { "command": "docker", "args": ["exec", "-i", "backlog-mcp-server", "node", "build/index.js"], "env": { "BACKLOG_SPACE_URL": "https://your-space.backlog.com", "BACKLOG_API_KEY": "your_api_key" } } } }

Other app settings methods

Claude Desktop: https://ainow.jp/claude-mcp-guide/

Windsurf: https://zenn.dev/y16ra/articles/3ed3e2ae734fa4

Cursor: https://note.com/shuzon\_\_/n/na2aafacf7324[Set Notion MCP Server as Cursor]

Example prompt

# 課題の検索 ・バックログのPROJECT1-100の課題を説明して ・バックログのPROJECT1のプロジェクトで処理中の課題を教えて # 課題の更新 ・PROJECT1-100の課題のステータスを完了にして ・PROJECT1-100の課題に「〜〜〜」とコメントして
-
security - not tested
F
license - not found
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

An MCP server that connects to Backlog API, providing functionality to search, retrieve, and update issues through natural language commands.

  1. function
    1. set up
      1. MCP Configuration
        1. Docker environment
          1. Development environment
          2. Production
          3. Use as an MCP server
        2. Example prompt

          Related MCP Servers

          • A
            security
            A
            license
            A
            quality
            An MCP server implementation that integrates Claude with Salesforce, enabling natural language interactions with Salesforce data and metadata for querying, modifying, and managing objects and records.
            Last updated -
            7
            87
            15
            TypeScript
            MIT License
          • A
            security
            A
            license
            A
            quality
            An MCP server implementation that integrates Claude with Salesforce, enabling natural language interactions with Salesforce data and metadata for querying, modifying, and managing objects and records.
            Last updated -
            7
            18
            4
            TypeScript
            MIT License
            • Apple
            • Linux
          • A
            security
            F
            license
            A
            quality
            An MCP server implementation that enables interaction with the Unstructured API, providing tools to list, create, update, and manage sources, destinations, and workflows.
            Last updated -
            39
            26
            • Apple
          • A
            security
            A
            license
            A
            quality
            An MCP server implementation that integrates with Backlog API, enabling project management operations including issues, projects, and wikis through natural language interactions.
            Last updated -
            12
            24
            3
            TypeScript
            MIT License

          View all related MCP servers

          ID: nndtos4pej