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 Claude.
Features
- Project management (create, read, update, delete)
- Issue tracking (create, update, delete, list)
- Wiki page management
- And more Backlog API integrations
Requirements
- Node.js (v16 or higher)
- A Backlog account with API access
- API key from your Backlog account
Installation
Option 1: Install via npx
The easiest way to use this MCP server is through Claude's MCP configuration:
- Open Claude 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
- Create a
.env
file with your Backlog credentials:Copy - Start the server:Copy
Available Tools
The server provides the following tools for interacting with Backlog:
Tool Name | Description |
---|---|
get_project_list | Returns list of projects |
add_issue | Creates a new issue in the specified project |
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_wiki_pages | Returns list of Wiki pages |
Usage Examples
Once the MCP server is configured in Claude, you can use the tools directly in your conversations. Here are some examples:
Listing Projects
Creating a New Issue
Getting Project Details
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
MIT
This server cannot be installed
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.