🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@duongkhuong/mcp-backlog

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@duongkhuong/mcp-backlog

MCP server for Backlog API integration with AI agents.

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

Backlog MCP Server

A Model Context Protocol (MCP) server for interacting with Backlog (backlog.com / backlog.jp).

Features

This server provides tools to:

  • Attachments: List and get attachments.
  • Categories: List and get categories.
  • Versions: List and get versions. ...

Installation

  • Clone and Install Dependencies:

    npm install
    
  • Build the Project:

    npm run build
    

Configuration

You need a Backlog API Key. You can generate one in your Backlog Personal Settings > API.

Usage with Claude Desktop

Add the following configuration to your claude_desktop_config.json:

{
  "mcpServers": {
    "backlog": {
      "command": "npx",
      "args": ["-y", "@duongkhuong/mcp-backlog"],
      "env": {
        "BACKLOG_HOST": "your-space-id.backlog.com",
        "BACKLOG_API_KEY": "your_api_key_here"
      }
    }
  }
}

Usage with Coplilot

Add the following configuration to your .vscode/mcp.json:

{
  "servers": {
    "backlog": {
     "command": "npx",
      "args": ["-y", "@duongkhuong/mcp-backlog"],
      "env": {
        "BACKLOG_HOST": "your-space-id.backlog.com", 
        "BACKLOG_API_KEY": "your_api_key_here"
      }
    }
  }
}

FAQs

Package last updated on 10 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts