drio
Open app

mcp-server-backlog

Source

MCP Server for backlog

Catalog onlyCatalog onlySTDIO

Overview

MCP Server Backlog is a project management tool designed to help teams manage their backlog effectively.

To use mcp-server-backlog, clone the repository from GitHub and set up the server according to the provided documentation.

  • Easy integration with existing workflows - Customizable backlog management - Real-time updates and notifications
  1. Managing software development tasks
  2. Prioritizing project features and bug fixes
  3. Collaborating with team members on project progress

Add to your AI client

Use these steps to connect mcp-server-backlog in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-backlog-kazuhideoki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-backlog-kazuhideoki"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-backlog-kazuhideoki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-backlog-kazuhideoki"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-backlog-kazuhideoki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-backlog-kazuhideoki"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-backlog-kazuhideoki": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-backlog-kazuhideoki"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-backlog-kazuhideoki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-backlog-kazuhideoki"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-backlog-kazuhideoki": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-backlog-kazuhideoki"
      ]
    }
  }
}

FAQ

Is mcp-server-backlog free to use?

Yes! mcp-server-backlog is open-source and free to use for everyone.

What technologies does mcp-server-backlog use?

The project is built using TypeScript and follows modern development practices.

How can I contribute to mcp-server-backlog?

Contributions are welcome! Please check the contribution guidelines in the repository.