Github Kanban MCP Server

A Model Context Protocol server for managing GitHub issues as Kanban using gh CLI

Local serverstdio

What is the Github Kanban MCP server?

Github kanban mcp server connects Github Kanban to AI assistants that speak the Model Context Protocol. A Model Context Protocol server for managing GitHub issues as Kanban using gh CLI.

What Github Kanban does

GitHub Kanban MCP Serverは、GitHubのissueをカンバンボード形式で管理し、LLMのタスク管理を効率化するためのModel Context Protocol(MCP)サーバーです。

Tools it exposes

Once connected, the assistant can call these 8 tools directly:

  • repo — GitHubリポジトリ名(必須)
  • state — issueの状態('open', 'closed', 'all')
  • labels — フィルタリングするラベルの配列
  • title — issueのタイトル(必須)
  • emoji — タイトルの先頭に付与する絵文字
  • body — issueの本文
  • assignees — アサインするユーザーの配列
  • issue_number — issue番号(必須)

Installing the github kanban mcp server

The server is distributed via npm as @sunwood-ai-labs/github-kanban-mcp-server, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Github Kanban sits in that group, and the shape of its toolset — repo, state, labels among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • With 8 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use Github Kanban.
  • Maintained by Sunwood-ai-labs.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the github kanban mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
repoGitHubリポジトリ名(必須)
stateissueの状態('open', 'closed', 'all')
labelsフィルタリングするラベルの配列
titleissueのタイトル(必須)
emojiタイトルの先頭に付与する絵文字
bodyissueの本文
assigneesアサインするユーザーの配列
issue_numberissue番号(必須)

How to install the Github Kanban MCP server

## ⚙️ 設定

MCPの設定ファイルに以下を追加:

```json
{
  "mcpServers": {
    "github-kanban": {
      "command": "github-kanban-mcp-server"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Github Kanban to repo.
  • Use Github Kanban to state.
  • Use Github Kanban to labels.

Frequently asked questions

It connects Github Kanban to MCP-compatible AI assistants such as Claude and Cursor, exposing 8 tools (repo, state, labels, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Github Kanban directly.