plane-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@plane-mcp-serverList all projects and show open high-priority work items in each."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
plane-mcp-server
An MCP (Model Context Protocol) server for self-hosted Plane (Community Edition). It gives Claude 56 tools covering projects, work items, states, labels, cycles, modules, comments, activity history, links, members, and intake triage, enough to act as a project manager across every project in your Plane workspace, from a local chat session.
Built against Plane's public REST API (/api/v1), documented at developers.plane.so. Community Edition covers projects, work items, cycles, modules, intake, and states/labels — this server sticks to that surface. Epics, initiatives, teamspaces, and customers are Plane Commercial/Cloud-only features and are intentionally not included.
Setup
1. Generate a Plane API key
In your Plane instance: Profile Settings → Personal Access Tokens → Add personal access token.
2. Install dependencies and build
cd plane-mcp-server
npm install
npm run build3. Configure environment variables
Copy .env.example to .env for reference, but note: MCP clients (Claude Desktop, Claude Code) pass environment variables directly in their config, not via a .env file loaded by this process.
Variable | Required | Description |
| Yes | Base URL of your self-hosted instance, e.g. |
| Yes | Personal Access Token from step 1. |
| No | Default workspace slug (from your Plane URL). If set, tools' |
4. Add to your MCP client
Claude Code (claude mcp add or edit .mcp.json):
{
"mcpServers": {
"plane": {
"command": "node",
"args": ["/absolute/path/to/plane-mcp-server/dist/index.js"],
"env": {
"PLANE_BASE_URL": "https://plane.mycompany.com",
"PLANE_API_KEY": "plane_api_xxxxxxxxxxxxxxxxxxxx",
"PLANE_WORKSPACE_SLUG": "acme"
}
}
}
}Claude Desktop (claude_desktop_config.json): same mcpServers block as above.
Restart the client after editing config. You should see the plane server connect with 56 tools available.
Related MCP server: Plane MCP
What it can do
Projects — list/get/create/update/archive/delete, keeping track of every project in a workspace at once.
Work items (issues) — full CRUD, lookup by UUID or human identifier (
ENG-123), free-text search, and advanced structured-filter search (by state, priority, assignee, labels).States & labels — inspect and manage each project's workflow columns and tags.
Cycles (sprints) — create/update/delete, assign or remove work items, read progress counts for status reporting.
Modules — same lifecycle as cycles, for longer-running feature groupings.
Comments & activity — read/write discussion threads, read the audit trail of field changes on a work item.
Links — attach PRs/docs/designs to a work item.
Members — resolve people's names/emails to UUIDs, staff projects, change roles.
Intake — triage incoming requests (accept/reject/snooze/duplicate) before they hit the backlog.
Every list/get tool accepts response_format: "markdown" | "json" (markdown by default, for readability; json for further programmatic use), and every tool that needs a workspace defaults to PLANE_WORKSPACE_SLUG if you configured one, so most calls only need a project_id.
Not implemented
Scoped out deliberately to keep the surface focused and CE-only: file/attachment uploads, pages, estimates, time tracking (worklogs), custom work item types/properties, and the commercial-only epics/initiatives/teamspaces/customers/IDP-sync APIs. These can be added later following the same pattern in src/tools/.
A typical multi-project PM session
plane_list_projects— see everything in the workspace.plane_advanced_search_work_itemson the active project with a priority/state filter — find what's urgent. It's project-scoped, so call it once per project to cover the whole workspace.plane_list_cycleson the active project, thenplane_list_cycle_work_items— check current sprint status.plane_update_work_item— move items between states, reassign, reprioritize.plane_add_work_item_comment— leave status notes.plane_list_intake_issues+plane_update_intake_issue— clear the triage queue.
Development
npm run dev # tsx watch, runs src/index.ts directly
npm run build # compile to dist/
npm start # run compiled dist/index.jsTest with the MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.js(Set PLANE_BASE_URL / PLANE_API_KEY / PLANE_WORKSPACE_SLUG in the Inspector's environment panel.)
Notes on endpoint stability
This server was built from Plane's hosted API docs (developers.plane.so) plus the documented self-hosting behavior — self-hosted instances share the same /api/v1 surface, but exact behavior can vary slightly by Plane version. If a less common tool (e.g. plane_advanced_search_work_items filter syntax) returns a 400/404 on your instance, prefer the simpler plane_list_work_items / plane_list_states / plane_list_labels tools and filter client-side, or check your instance's own API docs at <your-plane-url>/api/ if exposed.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables interaction with Plane.so project management API through natural language, allowing users to manage issues, cycles, and projects.10MIT
- AlicenseBqualityCmaintenanceAn MCP server that enables LLMs to fully manage a Plane workspace, including projects, work items, states, labels, cycles, modules, comments, and members.38MIT
- AlicenseAqualityCmaintenanceEnables interaction with self-hosted Plane project management instances using X-API-Key authentication, offering tools for project discovery, issue management, and workflow state operations.7MIT
- AlicenseNot gradedqualityBmaintenanceLocal MCP server for a self-hosted Plane instance that exposes tickets, cycles, modules, labels, and states as MCP tools with both read and mutation capabilities.144MIT
Related MCP Connectors
Manage projects, tasks, time tracking, and team collaboration through natural language.
Project management MCP for AI agents with safe task reads and writes.
Task manager your agent can fully operate: boards, tasks, sprints, roles, worklogs, day planner.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/avtechno-era/plane-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server