Supports containerized deployment of the Backlog MCP server for easy installation and usage.
Enables management of Git repositories and pull requests, including creating, updating, and commenting on pull requests.
Provides access to GitHub workflows and repository information through the Backlog integration.
Supports GraphQL-style field selection for optimizing responses when retrieving data from Backlog.
Allows manual setup and running of the Backlog MCP server using Node.js runtime.
<<<<<<< HEAD
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 tools (create, read, update, delete)
- Issue tracking and comments (create, update, delete, list)
- Wiki page support
- Git repository and pull request tools
- Notification tools
- GraphQL-style field selection for optimized responses
- Token limiting for large responses
Getting Started
Requirements
- Docker
- A Backlog account with API access
- API key from your Backlog account
Option 1: Install via Docker
The easiest way to use this MCP server is through MCP configurations:
- Open MCP 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.
✅ If you cannot use --pull always, you can manually update the image using:
Option 2: Manual Setup (Node.js)
- Clone and install:
- Set your json to use as MCP
Tool Configuration
You can selectively enable or disable specific toolsets using the --enable-toolsets
command-line flag or the ENABLE_TOOLSETS
environment variable. This allows better control over which tools are available to the AI agent and helps reduce context size.
Available Toolsets
The following toolsets are available (enabled by default when "all"
is used):
Toolset | Description |
---|---|
space | Tools for managing Backlog space settings and general information |
project | Tools for managing projects, categories, custom fields, and issue types |
issue | Tools for managing issues and their comments |
wiki | Tools for managing wiki pages |
git | Tools for managing Git repositories and pull requests |
notifications | Tools for managing user notifications |
Specifying Toolsets
You can control toolset activation in the following ways:
Using via CLI:
Or via environment variable:
If all is specified, all available toolsets will be enabled. This is also the default behavior.
Using selective toolsets can be helpful if the toolset list is too large for your AI agent or if certain tools are causing performance issues. In such cases, disabling unused toolsets may improve stability.
🧩 Tip:
project
toolset is highly recommended, as many other tools rely on project data as an entry point.
Dynamic Toolset Discovery (Experimental)
If you're using the MCP server with AI agents, you can enable dynamic discovery of toolsets at runtime:
Enabling via CLI:
Or via environment variable::
With dynamic toolsets enabled, the LLM will be able to list and activate toolsets on demand via tool interface.
Available Tools
Toolset: space
Tools for managing Backlog space settings and general information.
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.
Toolset: project
Tools for managing projects, categories, custom fields, and issue types.
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.
Toolset: issue
Tools for managing issues, their comments, and related items like priorities, categories, custom fields, issue types, resolutions, and watching lists.
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_priorities
: Returns list of priorities.get_categories
: Returns list of categories for a project.get_custom_fields
: Returns list of custom fields for a project.get_issue_types
: Returns list of issue types for a project.get_resolutions
: Returns list of issue resolutions.get_watching_list_items
: Returns list of watching items for a user.get_watching_list_count
: Returns count of watching items for a user.
Toolset: wiki
Tools for managing wiki pages.
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.
Toolset: git
Tools for managing Git repositories and pull requests.
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.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.
Toolset: notifications
Tools for managing user notifications.
get_notifications
: Returns list of notifications.get_notifications_count
: Returns count of notifications.reset_unread_notification_count
: Resets unread notification count.mark_notification_as_read
: Marks a notification as read.
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.
Advanced Features
Tool Name Prefixing
Add prefix to tool names with:
or via environment variable:
This is especially useful if you're using multiple MCP servers or tools in the same environment and want to avoid name collisions. For example, get_project can become backlog_get_project to distinguish it from similarly named tools provided by other services.
Response Optimization & Token Limits
Field Selection (GraphQL-style)
Or environment variable:
Then, request only specific fields:
The AI will use field selection to optimize the response:
Benefits:
- Reduce response size by requesting only needed fields
- Focus on specific data points
- Improve performance for large responses
Token Limiting
Large responses are automatically limited to prevent exceeding token limits:
- Default limit: 50,000 tokens
- Configurable via
MAX_TOKENS
environment variable - Responses exceeding the limit are truncated with a message
You can change this using:
If a response exceeds the limit, it will be truncated with a warning.
Note: This is a best-effort mitigation, not a guaranteed enforcement.
Full Custom Configuration Example
This section demonstrates advanced configuration using multiple environment variables. These are experimental features and may not be supported across all MCP clients. This is not part of the MCP standard specification and should be used with caution.
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
Command Line Options
The server supports several command line options:
--export-translations
: Export all translation keys and values--optimize-response
: Enable GraphQL-style field selection--max-tokens=NUMBER
: Set maximum token limit for responses--prefix=STRING
: Optional string prefix to prepend to all tool names (default: "")--enable-toolsets <toolsets...>
: Specify which toolsets to enable (comma-separated or multiple arguments). Defaults to "all". Example:--enable-toolsets space,project
or--enable-toolsets issue --enable-toolsets git
Available toolsets:space
,project
,issue
,wiki
,git
,notifications
.
Example:
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.
http-backlog-mcp-server
Backlog MCP server using HTTP
c8c3a34f98c2046b23c059de94807ae5e64cdefc
This server cannot be installed
A Model Context Protocol server that enables AI agents to interact with Backlog API for managing projects, issues, wikis, Git repositories, and other Backlog features.
Related MCP Servers
- -securityFlicense-qualityA comprehensive Model Context Protocol server implementation that enables AI assistants to interact with file systems, databases, GitHub repositories, web resources, and system tools while maintaining security and control.Last updated -16TypeScript
- AsecurityAlicenseAqualityA Model Context Protocol server that enables AI agents to interact with local Logseq knowledge graphs, supporting operations like creating/editing pages and blocks, searching content, and managing journal entries.Last updated -1315PythonMIT License
- AsecurityAlicenseAqualityA 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.Last updated -405370TypeScriptMIT License
- AsecurityAlicenseAqualityA Model Context Protocol server that enables AI assistants to interact with Bitbucket repositories, pull requests, and other resources through Bitbucket Cloud and Server APIs.Last updated -3854JavaScriptMIT License