Backlog MCP Server
The Backlog MCP Server integrates with the Backlog API for comprehensive project management:
Project Management: Retrieve projects with pagination and filtering, and access specific project details using ID or key.
Issue Management: Retrieve, create, update, and delete issues with support for extensive filtering options by keyword, status, assignee, etc. Includes sorting and pagination capabilities.
Wiki Management: Retrieve, create, update, and delete wiki pages with keyword search functionality and email notification options.
Configuration: Requires Backlog API key and space ID, with optional base URL customization.
Integration: Can be used with Claude Desktop via NPX or Docker, configured through environment variables.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Backlog MCP Servershow me the open issues in project ABC-123"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Official Backlog MCP server launched!
This repository will be changed visible.
https://nulab.com/ja/blog/backlog/released-backlog-mcp-server/
Backlog MCP Server
An MCP server implementation that integrates the Backlog API.
Tools
Project API
backlog_get_projects
Execute projects get with pagination and filtering
backlog_get_project
Execute project gets with project id or key
Issue API
backlog_get_issues
Execute issues get with pagination and filtering
backlog_get_issue
Execute issue gets with issue id or key
backlog_add_issue
Execute issue add with issue data
backlog_update_issue
Execute issue update with issue data
backlog_delete_issue
Execute issue delete with issue id or key
Wiki API
backlog_get_wikis
Execute wikis get with keyword
backlog_get_wiki
Execute wiki gets with wiki id or key
backlog_add_wiki
Execute wiki add with wiki data
backlog_update_wiki
Execute wiki update with wiki data
backlog_delete_wiki
Execute wiki delete with wiki id or key
Related MCP server: MCP Server Linear
Configuration
Getting an API Key
Sign up for a Backlog
Choose a plan (Free plan available here)
Generate your API key from the individual settings help
Environment Variables
This server requires the following environment variables:
Required:
BACKLOG_API_KEY: Your Backlog API keyBACKLOG_SPACE_ID: Your Backlog space ID
Optional:
BACKLOG_BASE_URL: Your Backlog base URL (default:https://{your-space-id}.backlog.com/api/v2)
Usage with Claude Desktop
Add this to your claude_desktop_config.json:
NPX
{
"mcpServers": {
"backlog": {
"command": "npx",
"args": [
"-y",
"backlog-mcp-server"
],
"env": {
"BACKLOG_API_KEY": "YOUR_API_KEY_HERE",
"BACKLOG_SPACE_ID": "YOUR_SPACE_ID_HERE"
}
}
}
}Docker
{
"mcpServers": {
"backlog": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"BACKLOG_API_KEY=YOUR_API_KEY_HERE",
"-e",
"BACKLOG_SPACE_ID=YOUR_SPACE_ID_HERE",
"mcp/backlog"
],
"env": {
"BACKLOG_API_KEY": "YOUR_API_KEY_HERE",
"BACKLOG_SPACE_ID": "YOUR_SPACE_ID_HERE"
}
}
}
}Development
Installation
npm installBuild
npm run buildDebug
npm run debugRunning Tests
T.B.D
Docker Build
docker build -t mcp/backlog -f Dockerfile .Extending the Server
To add new tools:
Define a new Zod schema in
src/core/schema.tsAdd a new tool definition in
src/tools/toolDefinitions.tsand include it inALL_TOOLSCreate a new handler in
src/tools/handlers.tsand register it intoolHandlersImplement business logic in a service in the
src/services/directory
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseCqualityDmaintenanceThis is an MCP server that facilitates building tools for interacting with various APIs and workflows, supporting Python-based development with potential for customizable prompts and user configurations.Last updated1
- Alicense-qualityFmaintenanceAn MCP server that provides tools for interacting with Linear issue tracking system, currently supporting issue search with plans to expand to issue creation, updates, comments, and project management.Last updated1,8431MIT
- AlicenseBqualityBmaintenanceA Model Context Protocol server that enables AI assistants to interact with Linear project management systems, allowing users to retrieve, create, and update issues, projects, and teams through natural language.Last updated1003,983143MIT
- AlicenseCqualityDmaintenanceAn MCP server that connects to Backlog API, providing functionality to search, retrieve, and update issues through natural language commands.Last updated455,2586MIT
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for generating rough-draft project plans from natural-language prompts.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fleagne/backlog-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server