Integrations
Provides Git repository management capabilities, including listing repositories and accessing repository information within Backlog projects.
Enables pull request management including creating, updating, listing pull requests and adding or updating comments on pull requests across repositories.
Backlog MCP Server
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 :
- Open Claude Desktop or Cline settings
- Navigate to the MCP configuration section
- Add the following configuration:
Replace your-domain.backlog.com
with your Backlog domain and your-api-key
with your Backlog API key.
Option 2: Manual Installation
- Clone the repository:Copy
- Install dependencies:Copy
- Build the project:Copy
- Set your json to use as MCP
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
Creating a New Issue
Getting Project Details
Working with Git Repositories
Managing Pull Requests
Watching Items
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:
When the server starts, it determines the final description for each tool based on the following priority:
- Environment variables (e.g.,
BACKLOG_MCP_TOOL_ADD_ISSUE_COMMENT_DESCRIPTION
) - Entries in
.backlog-mcp-serverrc.json
- Supported configuration file formats: .json, .yaml, .yml - Built-in fallback values (English)
Sample config:
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:
or
Using a Japanese Translation Template
A sample Japanese configuration file is provided at:
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:
The server loads the config file synchronously at startup.
Environment variables always take precedence over the config file.
Development
Running Tests
Adding New Tools
- Create a new file in
src/tools/
following the pattern of existing tools - Create a corresponding test file
- Add the new tool to
src/tools/tools.ts
- 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.
You must be authenticated.
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.
Tools
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.