backlog-mcp
An MCP server providing AI agents with read access to Backlog issues, comments, and attachments via API Key authentication.
README
backlog-mcp
An MCP (Model Context Protocol) server for Backlog (Nulab), providing AI agents with read access to Backlog issues and comments via API Key authentication.
Stack
- TypeScript ā strict, ESM (NodeNext)
- @modelcontextprotocol/sdk ā MCP server + stdio transport
- Zod ā config and tool input validation
- Axios ā Backlog REST API HTTP client
Features
- š Simple API Key authentication (no browser or SSO required)
- š
backlog_get_issue_listā list issues with rich filtering (project, status, priority, assignee, keyword, etc.) - š
backlog_get_issueā fetch a single issue's full details - š¬
backlog_get_commentsā fetch issue comments with changelog entries - šļø
backlog_get_projectsā list all accessible projects (with IDs and keys for filtering) - š„
backlog_get_usersā list project members (get user IDs for assignee filtering) - š
backlog_get_attachmentsā list attachments on an issue (with IDs for downloading) - ā¬ļø
backlog_download_attachmentā download an attachment to the local filesystem - š¦
backlog_export_issue_contextā export issue, comments, and attachments into a local raw Markdown context bundle for LLM summarization - š·ļø
backlog_get_statusesā list all statuses in a project (with IDs for filtering) - ā”
backlog_get_prioritiesā list global issue priorities (with IDs for filtering) - š
backlog_get_categoriesā list all categories in a project (with IDs for filtering) - šÆ
backlog_get_milestonesā list milestones/versions in a project (with IDs for filtering)
Requirements
- Node.js >= 20
- A Backlog space with API access
- A Backlog API Key (generate at Account Settings ā API ā Register API key)
Quick Start (End Users)
No cloning or building required. Uses
npxdirectly ā the MCP client spawns and manages the process automatically via stdio.
Step 1 ā Add to your MCP client
Gemini CLI
gemini mcp add backlog npx -y @cuongph.dev/backlog-mcp --env BACKLOG_BASE_URL=https://yourspace.backlog.com --env BACKLOG_API_KEY=your_api_key_here
Cursor
Edit ~/.cursor/mcp.json (global) or .cursor/mcp.json in your project:
{
"mcpServers": {
"backlog": {
"command": "npx",
"args": ["-y", "@cuongph.dev/backlog-mcp"],
"env": {
"BACKLOG_BASE_URL": "https://yourspace.backlog.com",
"BACKLOG_API_KEY": "your_api_key_here"
}
}
}
}
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"backlog": {
"command": "npx",
"args": ["-y", "@cuongph.dev/backlog-mcp"],
"env": {
"BACKLOG_BASE_URL": "https://yourspace.backlog.com",
"BACKLOG_API_KEY": "your_api_key_here"
}
}
}
}
Tip: You can omit the
envblock and place the variables in a.envfile at your working directory instead.dotenvis loaded automatically at startup.
Restart your MCP client after saving the config. No separate server process needed ā the client spawns and manages it automatically.
Development Setup
For contributors and developers working on the source code.
1. Clone and install
git clone <repo-url>
cd backlog-mcp
npm install
2. Configure environment
cp .env.example .env
Edit .env:
BACKLOG_BASE_URL=https://yourspace.backlog.com
BACKLOG_API_KEY=your_api_key_here
3. Add to MCP client (local build)
First build the project:
npm run build
Then use the local dist/server.js in your MCP config:
Cursor (~/.cursor/mcp.json):
{
"mcpServers": {
"backlog": {
"command": "node",
"args": ["/absolute/path/to/backlog-mcp/dist/server.js"]
}
}
}
The
.envfile in the project root is loaded automatically ā no need to duplicate env vars in the MCP config.
Agent Summary Prompt
After exporting an issue with backlog_export_issue_context, use docs/prompts/backlog_issue_summary.md as the agent prompt template for summarizing task intent, comments, attachments, inferred acceptance criteria, and optional code context.
For Backlog-to-Jira migration, use docs/prompts/backlog_to_jira_migration.md. It keeps Jira description short, posts raw Backlog context, Vietnamese translation, and Vietnamese analysis as separate Jira comments, and uploads matching markdown files with clear names.
MCP Tools
backlog_get_issue_list
Fetch a list of Backlog issues with optional filters.
Input:
| Field | Type | Description |
|---|---|---|
projectIdOrKey |
string |
Filter by project key ("MYPROJ") or numeric ID ("12345") ā comma-separated, auto-resolved |
statusId |
number[] or string |
Filter by status: 1=Open, 2=InProgress, 3=Resolved, 4=Closed. Accept [1,2] or "1,2" |
priorityId |
number[] or string |
Filter by priority: 2=High, 3=Normal, 4=Low. Accept [2,3] or "2,3" |
assigneeId |
number[] or string |
Filter by assignee user ID(s). Get IDs from backlog_get_users |
categoryId |
number[] or string |
Filter by category ID(s) |
milestoneId |
number[] or string |
Filter by milestone ID(s) |
keyword |
string |
Search keyword in summary and description |
parentChild |
0|1|2|3|4 |
0=all, 1=child only, 2=parent only, 3=no parent, 4=no child |
count |
number |
Number of issues (1ā100, default 20) |
offset |
number |
Pagination offset (default 0) |
sort |
string |
Sort field (created, updated, status, priority, dueDate, ...) |
order |
asc|desc |
Sort order (default desc) |
Output: Compact table + detailed summaries for each issue (key, type, status, priority, assignee, dates, hours).
backlog_get_issue
Fetch a single Backlog issue by key or numeric ID.
Input:
| Field | Type | Description |
|---|---|---|
issueIdOrKey |
string |
Issue key (e.g. BLG-123) or numeric issue ID |
Output: Full issue details ā summary, description, status, priority, type, assignee, reporter, categories, milestones, versions, dates, estimated/actual hours, URL.
backlog_get_comments
Fetch comments for a Backlog issue.
Input:
| Field | Type | Description |
|---|---|---|
issueIdOrKey |
string |
Issue key (e.g. BLG-123) or numeric issue ID |
count |
number |
Number of comments (1ā100, default 20) |
order |
asc|desc |
asc = oldest first, desc = newest first (default) |
minId |
number |
Return comments with ID >= minId |
maxId |
number |
Return comments with ID <= maxId |
Output: List of comments with author, date, text content, and field changes (changelog).
backlog_get_projects
Fetch the list of Backlog projects accessible to the current API Key.
Input:
| Field | Type | Description |
|---|---|---|
archived |
boolean |
Omit = all, false = active only, true = archived only |
Output: Table of projects with ID, key, name, and archived flag. Use the key in project-scoped tools or projectIdOrKey in backlog_get_issue_list.
backlog_get_users
Fetch project members for a given Backlog project.
Input:
| Field | Type | Description |
|---|---|---|
projectIdOrKey |
string |
Required. Project key (e.g. MYPROJ) or numeric ID |
keyword |
string |
Filter by display name or userId (case-insensitive) |
Output: Table of project members with numeric ID, userId, name, email, and role. Use the ID as assigneeId in backlog_get_issue_list.
backlog_get_statuses
Fetch all statuses defined for a Backlog project.
Input:
| Field | Type | Description |
|---|---|---|
projectIdOrKey |
string |
Project key (e.g. MYPROJ) or numeric project ID |
Output: Table of statuses with ID, name, and color. Use IDs in statusId filter of backlog_get_issue_list.
backlog_get_priorities
Fetch the global list of issue priorities (space-wide, not project-specific).
Input: None required.
Output: Table of priorities with ID and name. Use IDs in priorityId filter of backlog_get_issue_list.
backlog_get_categories
Fetch all categories defined for a Backlog project.
Input:
| Field | Type | Description |
|---|---|---|
projectIdOrKey |
string |
Project key (e.g. MYPROJ) or numeric project ID |
Output: Table of categories with ID and name. Use IDs in categoryId filter of backlog_get_issue_list.
backlog_get_milestones
Fetch milestones (versions) for a Backlog project.
Input:
| Field | Type | Description |
|---|---|---|
projectIdOrKey |
string |
Project key (e.g. MYPROJ) or numeric project ID |
archived |
boolean |
Include archived milestones (default: false) |
Output: Table of milestones with ID, name, start date, due date, and archived flag. Use IDs in milestoneId filter of backlog_get_issue_list.
Project Structure
src/
āāā server.ts # MCP server entry point (factory pattern + Express)
āāā config.ts # Env var validation (Zod)
āāā errors.ts # Typed error classes & factories
āāā utils.ts # Shared helpers (dates, string formatting)
āāā types.ts # Normalized domain types (BacklogIssue, BacklogComment, ...)
āāā types/
ā āāā backlog-api.ts # Raw Backlog API response types
āāā backlog/
ā āāā endpoints.ts # URL builders (API v2)
ā āāā mappers.ts # Raw API payload ā domain types
ā āāā http-client.ts # API Key-authenticated Backlog HTTP client
āāā tools/
ā āāā get-issue-list.ts # backlog_get_issue_list handler
ā āāā get-issue.ts # backlog_get_issue handler
ā āāā get-comments.ts # backlog_get_comments handler
ā āāā get-statuses.ts # backlog_get_statuses handler
ā āāā get-priorities.ts # backlog_get_priorities handler
ā āāā get-categories.ts # backlog_get_categories handler
ā āāā get-milestones.ts # backlog_get_milestones handler
āāā tests/ # Unit tests (Vitest)
Development Commands
# Type check (no emit)
npx tsc --noEmit
# Run tests
npm test
# Watch mode
npm run test:watch
# Build for production
npm run build
# Run dev server
npm run dev
Error Codes
| Code | Meaning |
|---|---|
API_KEY_MISSING |
BACKLOG_API_KEY is not set in environment |
BACKLOG_HTTP_ERROR |
Unexpected HTTP error from Backlog REST API (e.g. 401, 403, 404) |
BACKLOG_RESPONSE_ERROR |
Backlog returned an unexpected response shape |
CONFIG_ERROR |
Invalid or missing environment variable |
INVALID_INPUT |
Tool input failed validation |
Security Notes
.envis git-ignored and must never be committed.- Your API Key grants full access to your Backlog space as the associated user ā treat it like a password.
- The API Key is only stored locally in
.envand sent as a query parameter over HTTPS.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.