Backlog MCP Server

Backlog MCP Server

A Model Context Protocol server that enables Claude to interact with Backlog project management tools through API integration, allowing management of projects, issues, wiki pages and other Backlog resources.

Category
访问服务器

Tools

update_pull_request

Updates an existing pull request

get_pull_request_comments

Returns list of comments for a pull request

add_pull_request_comment

Adds a comment to a pull request

update_pull_request_comment

Updates a comment on a pull request

add_wiki

Creates a new wiki page

get_space

Returns information about the Backlog space

get_users

Returns list of users in the Backlog space

get_myself

Returns information about the authenticated user

get_priorities

Returns list of priorities

get_resolutions

Returns list of issue resolutions

get_issue_types

Returns list of issue types for a project

get_notifications

Returns list of notifications

count_notifications

Returns count of notifications

reset_unread_notification_count

Reset unread notification count

mark_notification_as_read

Mark a notification as read

get_git_repositories

Returns list of Git repositories for a project

get_git_repository

Returns information about a specific Git repository

get_pull_requests

Returns list of pull requests for a repository

get_pull_requests_count

Returns count of pull requests for a repository

get_pull_request

Returns information about a specific pull request

add_pull_request

Creates a new pull request

get_watching_list_items

Returns list of watching items for a user

get_watching_list_count

Returns count of watching items for a user

get_project_list

Returns list of projects

add_project

Creates a new project

get_project

Returns information about a specific project

update_project

Updates an existing project

delete_project

Deletes a project

get_issue

Returns information about a specific issue

get_issues

Returns list of issues

count_issues

Returns count of issues

add_issue

Creates a new issue in the specified project.

update_issue

Updates an existing issue

delete_issue

Deletes an issue

get_issue_comments

Returns list of comments for an issue

add_issue_comment

Adds a comment to an issue

get_wiki_pages

Returns list of Wiki pages

get_wikis_count

Returns count of wiki pages in a project

get_wiki

Returns information about a specific wiki page

get_categories

Returns list of categories for a project

README

Backlog MCP Server

MIT License Build Last Commit

📘 日本語でのご利用ガイド

A Model Context Protocol (MCP) server for interacting with the Backlog API. This server provides tools for managing projects, issues, wiki pages, and more in Backlog through AI agents like Claude Desktop / Cline / Cursor etc.

Features

  • Project management (create, read, update, delete)
  • Issue tracking (create, update, delete, list)
  • Wiki page management
  • Git repository management
  • Pull request management (create, update, list, comment)
  • Notification management
  • Watching list management
  • And more Backlog API integrations

Requirements

  • Docker
  • A Backlog account with API access
  • API key from your Backlog account

Installation

Option 1: Install via Docker

The easiest way to use this MCP server is through MCP configuration for Claude Desktop or Cline :

  1. Open Claude Desktop or Cline settings
  2. Navigate to the MCP configuration section
  3. Add the following configuration:
{
  "mcpServers": {
    "backlog": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e", "BACKLOG_DOMAIN",
        "-e", "BACKLOG_API_KEY",
        "ghcr.io/nulab/backlog-mcp-server"
      ],
      "env": {
        "BACKLOG_DOMAIN": "your-domain.backlog.com",
        "BACKLOG_API_KEY": "your-api-key"
      }
    }
  }
}

Replace your-domain.backlog.com with your Backlog domain and your-api-key with your Backlog API key.

Option 2: Manual Installation

  1. Clone the repository:

    git clone https://github.com/nulab/backlog-mcp-server.git
    cd backlog-mcp-server
    
  2. Install dependencies:

    npm install
    
  3. Build the project:

    npm run build
    
  4. Set your json to use as MCP

{
  "mcpServers": {
    "backlog": {
      "command": "node",
      "args": [
        "your-repojitory-location/build/index.js"
      ],
      "env": {
        "BACKLOG_DOMAIN": "your-domain.backlog.com",
        "BACKLOG_API_KEY": "your-api-key"
      }
    }
  }
}

Available Tools

The server provides the following tools for interacting with Backlog:

Space Tools

Tool Name Description
get_space Returns information about the Backlog space
get_users Returns list of users in the Backlog space
get_myself Returns information about the authenticated user
get_priorities Returns list of priorities
get_resolutions Returns list of issue resolutions
get_issue_types Returns list of issue types for a project

Project Tools

Tool Name Description
get_project_list Returns list of projects
add_project Creates a new project
get_project Returns information about a specific project
update_project Updates an existing project
delete_project Deletes a project

Issue Tools

Tool Name Description
get_issue Returns information about a specific issue
get_issues Returns list of issues
count_issues Returns count of issues
add_issue Creates a new issue in the specified project
update_issue Updates an existing issue
delete_issue Deletes an issue

Comment Tools

Tool Name Description
get_issue_comments Returns list of comments for an issue
add_issue_comment Adds a comment to an issue

Wiki Tools

Tool Name Description
get_wiki_pages Returns list of Wiki pages
get_wikis_count Returns count of wiki pages in a project
get_wiki Returns information about a specific wiki page
add_wiki Creates a new wiki page

Category Tools

Tool Name Description
get_categories Returns list of categories for a project

Notification Tools

Tool Name Description
get_notifications Returns list of notifications
count_notifications Returns count of notifications
reset_unread_notification_count Reset unread notification count
mark_notification_as_read Mark a notification as read

Git Repository Tools

Tool Name Description
get_git_repositories Returns list of Git repositories for a project
get_git_repository Returns information about a specific Git repository

Pull Request Tools

Tool Name Description
get_pull_requests Returns list of pull requests for a repository
get_pull_requests_count Returns count of pull requests for a repository
get_pull_request Returns information about a specific pull request
add_pull_request Creates a new pull request
update_pull_request Updates an existing pull request
get_pull_request_comments Returns list of comments for a pull request
add_pull_request_comment Adds a comment to a pull request
update_pull_request_comment Updates a comment on a pull request

Watching Tools

Tool Name Description
get_watching_list_items Returns list of watching items for a user
get_watching_list_count Returns count of watching items for a user

Usage Examples

Once the MCP server is configured in AI agents, you can use the tools directly in your conversations. Here are some examples:

Listing Projects

Could you list all my Backlog projects?

Creating a New Issue

Create a new bug issue in the PROJECT-KEY project with high priority titled "Fix login page error"

Getting Project Details

Show me the details of the PROJECT-KEY project

Working with Git Repositories

List all Git repositories in the PROJECT-KEY project

Managing Pull Requests

Show me all open pull requests in the repository "repo-name" of PROJECT-KEY project
Create a new pull request from branch "feature/new-feature" to "main" in the repository "repo-name" of PROJECT-KEY project

Watching Items

Show me all items I'm watching 

i18n / Overriding Descriptions

You can override the descriptions of tools by creating a .backlog-mcp-serverrc.json file in your home directory.

The file should contain a JSON object with the tool names as keys and the new descriptions as values.
For example:

{
  "TOOL_ADD_ISSUE_COMMENT_DESCRIPTION": "An alternative description",
  "TOOL_CREATE_PROJECT_DESCRIPTION": "Create a new project in Backlog"
}

When the server starts, it determines the final description for each tool based on the following priority:

  1. Environment variables (e.g., BACKLOG_MCP_TOOL_ADD_ISSUE_COMMENT_DESCRIPTION)
  2. Entries in .backlog-mcp-serverrc.json - Supported configuration file formats: .json, .yaml, .yml
  3. Built-in fallback values (English)

Sample config:

{
  "mcpServers": {
    "backlog": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e", "BACKLOG_DOMAIN",
        "-e", "BACKLOG_API_KEY",
        "-v", "/yourcurrentdir/.backlog-mcp-serverrc.json:/root/.backlog-mcp-serverrc.json:ro",
        "ghcr.io/nulab/backlog-mcp-server"
      ],
      "env": {
        "BACKLOG_DOMAIN": "your-domain.backlog.com",
        "BACKLOG_API_KEY": "your-api-key"
      }
    }
  }
}

Exporting Current Translations

You can export the current default translations (including any overrides) by running the binary with the --export-translations flag.

This will print all tool descriptions to stdout, including any customizations you have made.

Example:

docker run -i --rm ghcr.io/nulab/backlog-mcp-server node build/index.js --export-translations

or

npx github:nulab/backlog-mcp-server --export-translations

Using a Japanese Translation Template

A sample Japanese configuration file is provided at:

translationConfig/.backlog-mcp-serverrc.json.example

To use it, copy it to your home directory as .backlog-mcp-serverrc.json:

You can then edit the file to customize the descriptions as needed.

Using Environment Variables

Alternatively, you can override tool descriptions via environment variables.

The environment variable names are based on the tool keys, prefixed with BACKLOG_MCP_ and written in uppercase.

Example: To override the TOOL_ADD_ISSUE_COMMENT_DESCRIPTION:

{
  "mcpServers": {
    "backlog": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e", "BACKLOG_DOMAIN",
        "-e", "BACKLOG_API_KEY",
        "-e", "BACKLOG_MCP_TOOL_ADD_ISSUE_COMMENT_DESCRIPTION"
        "ghcr.io/nulab/backlog-mcp-server"
      ],
      "env": {
        "BACKLOG_DOMAIN": "your-domain.backlog.com",
        "BACKLOG_API_KEY": "your-api-key",
        "BACKLOG_MCP_TOOL_ADD_ISSUE_COMMENT_DESCRIPTION": "An alternative description"
      }
    }
  }
}

The server loads the config file synchronously at startup.

Environment variables always take precedence over the config file.

Development

Running Tests

npm test

Adding New Tools

  1. Create a new file in src/tools/ following the pattern of existing tools
  2. Create a corresponding test file
  3. Add the new tool to src/tools/tools.ts
  4. Build and test your changes

License

This project is licensed under the MIT License.

Please note: This tool is provided under the MIT License without any warranty or official support.
Use it at your own risk after reviewing the contents and determining its suitability for your needs.
If you encounter any issues, please report them via GitHub Issues.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选