This page covers connecting external MCP clients to Vibe Kanban’s MCP server. For configuring MCP servers within Vibe Kanban for your coding agents, see the MCP Server Configuration guide.
Vibe Kanban’s MCP server is local-only - it runs on your computer and can only be accessed by applications installed locally. It cannot be accessed via publicly accessible URLs.
Setting Up MCP Integration
Option 1: Using the Web Interface
This works if you’re adding the Vibe Kanban MCP server to any supported coding agent within Vibe Kanban.- In Vibe Kanban Settings, navigate to the “MCP Servers” page
- In the “Popular servers” section, click on the Vibe Kanban card
- Click the
Save Settingsbutton

Option 2: Manual Configuration
You can manually add the MCP server to your coding agent’s configuration. The exact syntax will depend on your coding agent or MCP client. Add the following configuration to your agent’s MCP servers configuration:--mcp launches the local MCP stdio server. Any additional arguments after --mcp are passed through to the vibe-kanban-mcp binary.
Available MCP Tools
The Vibe Kanban MCP server provides tools for managing organisations, projects, issues, workspaces, and task execution.Many tools accept an optional
project_id or organization_id parameter. When running inside a workspace linked to a remote project, these are inferred automatically from context and can be omitted. The exception is list_projects, which always requires an explicit organization_id.Context
Organisation Operations
Project Operations
Issue Management
Issue Assignees
Issue Tags
Issue Relationships
Supported relationship types:
blocking, related, has_duplicate.
Repository Management
Workspace Management
Workspace Sessions
The
repositories parameter is an array of objects with:
repo_id: The repository ID (UUID)branch: The branch for this repository
issue_id is provided, the workspace is automatically linked to the remote issue. If prompt is omitted, the linked issue’s title and description are used as the workspace prompt.
Supported Executors
When usingstart_workspace, the following executors are supported (case-insensitive, accepts hyphens or underscores):
claude-code/CLAUDE_CODEamp/AMPgemini/GEMINIcodex/CODEXopencode/OPENCODEcursor_agent/CURSOR_AGENTqwen-code/QWEN_CODEcopilot/COPILOTdroid/DROID
Using the MCP Server
Once you have the MCP server configured, you can leverage it to streamline your project planning and execution workflow:- Plan Your Work: Describe a large feature or project to your MCP client
- Request Issue Creation: At the end of your description, simply add “then turn this plan into issues”
- Automatic Issue Generation: Your MCP client will use the Vibe Kanban MCP server to automatically create structured issues in your project
- Start Workspaces: Use
start_workspaceto programmatically begin work on issues with specific coding agents
Example Usage
Planning and Issue Creation
create_issue tool to break this down into individual issues and add them to your Vibe Kanban project automatically.
Starting a Workspace Session
After issues are created, you can start work on them programmatically:start_workspace tool with parameters like:
Complete Workflow Example
list_organizations, list_projects, list_issues, create_issue, assign_issue, start_workspace) to manage the complete workflow from planning to execution.
Internal Coding Agents (Within Vibe Kanban)
A powerful workflow involves using coding agents within Vibe Kanban that are also connected to the Vibe Kanban MCP server:- Create a Planning Issue: Create an issue with a custom agent profile configured with a planning prompt. See Agent Configurations for details on creating custom profiles.
- Explore and Plan: The coding agent explores the codebase and develops a comprehensive plan
- Generate Issues: Ask the coding agent to “create a series of individual issues for this plan”
- Automatic Population: The agent uses the MCP server to populate individual issues directly in the Vibe Kanban interface
Installation Instructions for MCP Clients
Raycast Example
Raycast is a popular MCP client that can connect to Vibe Kanban’s MCP server. Here’s how to configure it: For complete Raycast MCP configuration details, see the official Raycast MCP documentation.- Step 1: Open MCP Server Installer
- Step 2: Supply Command

Similar configuration steps apply to other MCP clients like Claude Desktop, VS Code with MCP extensions, or any custom MCP client implementations.
