Plane MCP
An MCP server that enables LLMs to fully manage a Plane workspace, including projects, work items, states, labels, cycles, modules, comments, and members.
README
Plane MCP
A Model Context Protocol server for Plane (self-hosted or Cloud). It lets an LLM client — Claude Desktop, Claude Code, Cursor, etc. — fully drive your Plane workspace: discover projects, and create / read / update / delete / re-organize work items, states, labels, cycles, modules, and comments.
Verified against a self-hosted instance at
plane.nzminds.com(workspacenzmt).
What it can do
| Resource | Tools |
|---|---|
| Projects | list_projects, find_project, get_project, create_project, update_project, delete_project |
| Work items | list_work_items, get_work_item, get_work_item_by_number, search_work_items, create_work_item, update_work_item, set_work_item_status, delete_work_item |
| States (statuses) | list_states, find_state, create_state, update_state, delete_state |
| Labels | list_labels, create_label, update_label, delete_label |
| Cycles (sprints) | list_cycles, get_cycle, create_cycle, update_cycle, delete_cycle, list_cycle_work_items, add_work_items_to_cycle, remove_work_item_from_cycle |
| Modules | list_modules, get_module, create_module, update_module, delete_module, list_module_work_items, add_work_items_to_module, remove_work_item_from_module |
| Comments | list_comments, add_comment, update_comment, delete_comment |
| Members | list_members, find_member |
How Plane's model works (quick mental model)
Workspace (slug, e.g. "nzmt")
└─ Project (UUID) ← discover with list_projects
├─ Work Items / Issues ← the tickets; have a UUID + human number (TRAVELXS-391)
├─ States ← the statuses (Backlog/Todo/In Progress/Done…), each a UUID
├─ Labels ← UUIDs
├─ Cycles ← time-boxed sprints
└─ Modules ← feature groupings
Everything in a request body is a UUID, not a name. So the normal flow is:
list_projects→ pick a project UUID.list_states→ map "In Progress" → its UUID.list_members/list_labelslikewise.- Create/update the work item. To change status, set
stateto the target state UUID (or useset_work_item_status).
Most tools take an optional project_id; if omitted they fall back to PLANE_DEFAULT_PROJECT_ID from your .env.
Setup
1. Get an API key
See SETUP.md for step-by-step instructions (Profile Settings → Personal Access Tokens).
2. Configure
cp .env.example .env
# edit .env: PLANE_BASE_URL, PLANE_API_KEY, PLANE_WORKSPACE_SLUG
3. Install
Requires Python ≥ 3.10.
python -m pip install -e .
(or with uv: uv pip install -e .)
4. Run
plane-mcp # or: python -m plane_mcp
It speaks MCP over stdio, so you normally don't run it by hand — your MCP client launches it.
Connecting to a client
Claude Desktop / Claude Code
Add to your MCP config (claude_desktop_config.json, or via claude mcp add):
{
"mcpServers": {
"plane": {
"command": "plane-mcp",
"env": {
"PLANE_BASE_URL": "https://plane.nzminds.com",
"PLANE_API_KEY": "plane_api_xxxxxxxx",
"PLANE_WORKSPACE_SLUG": "nzmt"
}
}
}
}
Or, if you'd rather rely on the .env file, drop the env block and use the absolute interpreter:
{
"mcpServers": {
"plane": {
"command": "python",
"args": ["-m", "plane_mcp"],
"cwd": "d:/Govind/Plane MCP"
}
}
}
Claude Code one-liner:
claude mcp add plane -- python -m plane_mcp
Example prompts once connected
- "List my projects in Plane."
- "In TravelXS, create a high-priority bug 'Login fails on Safari' and assign it to govind.kumar."
- "Move TRAVELXS-391 to In Progress."
- "Create a cycle 'Sprint 12' from 2026-07-01 to 2026-07-14 and add TRAVELXS-394 and -376 to it."
- "Add a comment to TRAVELXS-308 saying the fix is deployed."
Notes & limits
- Rate limit: 60 requests/min per key. The client auto-retries on
429with backoff. - Pagination: list tools follow Plane's cursor pagination and return all results.
- Destructive ops: the hard
delete_*tools (project, work item, state, label, cycle, module, comment) are disabled by default. SetPLANE_ALLOW_DELETE=truein.envto expose them. Relationship removals (remove_work_item_from_cycle/_module) are always available since they're reversible. - Self-hosted path quirk: cycle/module work-item sub-resources are
/cycle-issues/and/module-issues/(the public docs saywork_items, which 404s on self-hosted). This server uses the verified paths.
Project layout
src/plane_mcp/
├── config.py # env loading & validation
├── client.py # async HTTP client: pagination, 429 retry, errors
├── server.py # FastMCP instance + tool registration
├── __main__.py # entry point (stdio)
└── tools/ # one module per resource
├── projects.py issues.py states.py labels.py
├── cycles.py modules.py comments.py members.py
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.