GitHub Kanban MCP Server is a powerful tool that manages GitHub issues in a Kanban board format, designed to streamline task management with Large Language Models (LLMs). This server implements the Model Context Protocol (MCP) to provide efficient project management and visualization capabilities.
Before installing the GitHub Kanban MCP Server, make sure you have:
Install the package using npm:
npm install @sunwood-ai-labs/github-kanban-mcp-server
Configure GitHub CLI authentication:
gh auth login
Add the following to your MCP configuration file:
{
"mcpServers": {
"github-kanban": {
"command": "github-kanban-mcp-server"
}
}
}
The list_issues
tool retrieves a list of issues from your Kanban board.
Input Parameters:
repo
: GitHub repository name (required)state
: Issue state ('open', 'closed', 'all')labels
: Array of labels to filter byExample:
{
"repo": "username/repository",
"state": "open",
"labels": ["bug", "high-priority"]
}
The create_issue
tool creates a new issue in your repository.
Input Parameters:
repo
: GitHub repository name (required)title
: Issue title (required)emoji
: Emoji to prefix the titlebody
: Issue descriptionlabels
: Array of labelsassignees
: Array of users to assignExample:
{
"repo": "username/repository",
"title": "Implement login feature",
"emoji": "🔑",
"body": "Create a secure login system with OAuth support",
"labels": ["feature", "frontend"],
"assignees": ["developer1"]
}
The update_issue
tool updates an existing issue.
Input Parameters:
repo
: GitHub repository name (required)issue_number
: Issue number (required)title
: New titleemoji
: Emoji to prefix the titlebody
: New descriptionstate
: New state ('open', 'closed')labels
: New array of labelsassignees
: New array of assigneesExample:
{
"repo": "username/repository",
"issue_number": 42,
"title": "Enhance login feature",
"state": "open",
"labels": ["feature", "frontend", "in-progress"]
}
The add_comment
tool adds a comment to a task.
Input Parameters:
repo
: GitHub repository name (required)issue_number
: Task (Issue) ID (required)body
: Comment content (supports Markdown) (required)state
: Issue state to change upon commenting ('open', 'closed')Example:
{
"repo": "username/repository",
"issue_number": 42,
"body": "I've started working on this feature. Will be completed by Friday.",
"state": "open"
}
You can combine these tools to create comprehensive task management workflows. For example:
This approach enables LLMs to effectively manage GitHub projects through the Kanban interface, automating routine task management activities.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "github-kanban" '{"command":"github-kanban-mcp-server"}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"github-kanban": {
"command": "github-kanban-mcp-server"
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"github-kanban": {
"command": "github-kanban-mcp-server"
}
}
}
3. Restart Claude Desktop for the changes to take effect