Backlog

by jootsuki

3 stars
Not rated
GitHub

About

Provides a bridge to the Backlog project management API, enabling querying and manipulation of project tracking, issue management, and collaboration features through conversational interactions.

Details

Author
jootsuki
Repository
jootsuki/backlog-mcp-server
GitHub stars
3
Categories
Productivity, Developer Tools, Design, Workplace, AI, Search, Frontend, Communication
Tags
#integration

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
    Command (node, npx, python, etc.) node
    Arguments
    • Argument 1 build/index.js

    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

search_issue

Search for issues in a specific project. Parameters: project_key (string), issue_id (optional string)

get_issue

Retrieve details of a specific issue. Parameters: issue_id (string)

update_issue

Update the status or add comments to a specific issue. Parameters: issue_id (string), status (string), comment (optional string)

Claude Desktop / Cursor

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

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

Linux

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

Macos

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

Windows

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

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.