Backlog MCP Server

by MCP-Mirror

357 downloads
Not rated
GitHub

About

A Model Context Protocol (MCP) server that connects to the Backlog API, providing search, retrieval, and update capabilities for Backlog issues. It is intended for developers using AI assistants that support MCP to interact with Backlog project management data.

Details

Author
MCP-Mirror
Downloads
357
Categories
Other, API

- Search for issues in Backlog.
- Retrieve issue details by ID or project.
- Update issue properties (e.g., status, comments).
- Supports both local Node.js and Docker deployments.
- Runs in development mode with hot reload in Docker.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Backlog MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Configure the MCP client (e.g., Cline, RooCline, Claude Desktop) by adding the server definition to the client’s MCP settings file. Use either a direct node command pointing to the built index.js or a Docker container execution. Set the environment variables BACKLOG_SPACE_URL and BACKLOG_API_KEY with your Backlog space URL and API key.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "backlog mcp server": {
            "jootsuki_backlog-mcp-server": {
                "command": "docker",
                "args": [
                    "compose",
                    "up",
                    "-d",
                    "--build"
                ],
                "env": {
                    "NODE_ENV": "development"
                }
            }
        }
    }
}

McpServers

{
    "jootsuki_backlog-mcp-server": {
        "command": "docker",
        "args": [
            "compose",
            "up",
            "-d",
            "--build"
        ],
        "env": {
            "NODE_ENV": "development"
        }
    }
}

Backlog MCP Server

BacklogのAPIに接続するMCPサーバーです。課題の検索、取得、更新機能を提供します。

機能

- 課題の検索
- 課題の取得
- 課題の更新

セットアップ

MCPの設定

~/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"
    }
  }
}

注意:cwdは実際のプロジェクトパスに置き換えてください。

Docker環境

開発環境

開発やテスト用にDockerコンテナを使用する場合:

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.