plane-mcp-server
by makeplane·★ 225·Score 50
Plane's official MCP server provides comprehensive tools for project management, work items, cycles, modules, and more through multiple transport protocols.
Overview
This MCP server by Plane offers extensive tools for project management and collaboration. It supports multiple transport methods including stdio, SSE, and HTTP, making it compatible with various client environments. The server implements a comprehensive API covering projects, work items, cycles, modules, epics, milestones, labels, and more. It features strong authentication support through both API keys and OAuth tokens, with flexible configuration options for different use cases.
Try asking AI
After installing, here are 6 things you can ask your AI assistant:
When to choose this
Choose this MCP server if you're already using Plane for project management and want AI agents to interact with your Plane workspace programmatically.
When NOT to choose this
Don't choose this if you need write access beyond what Plane's API provides, or if you're concerned about vendor lock-in to the Plane ecosystem.
Tools this server exposes
12 tools extracted from the READMElist_projectsList all projects in a workspace with optional pagination and filtering
create_projectCreate a new project with name, identifier, and optional configuration
list_work_itemsList all work items in a project with optional filtering and pagination
create_work_itemCreate a new work item with name, assignees, labels, and other attributes
retrieve_work_itemRetrieve a work item by ID with optional field expansion
update_work_itemUpdate a work item with partial data
list_cyclesList all cycles in a project
create_cycleCreate a new cycle with name, dates, and owner
retrieve_projectRetrieve a project by ID
delete_work_itemDelete a work item by ID
list_epicsList all epics in a project
create_epicCreate a new epic
Comparable tools
Installation
Installation
The Plane MCP server supports multiple transport methods:
**1. Stdio Transport (recommended)**
uvx plane-mcp-server stdio**2. Remote HTTP Transport (OAuth)**
npx mcp-remote@latest https://mcp.plane.so/http/mcp**Claude Desktop Configuration**
{
"mcpServers": {
"plane": {
"command": "uvx",
"args": ["plane-mcp-server", "stdio"],
"env": {
"PLANE_API_KEY": "<your-api-key>",
"PLANE_WORKSPACE_SLUG": "<your-workspace-slug>",
"PLANE_BASE_URL": "https://api.plane.so"
}
}
}
}FAQ
- What authentication methods are supported?
- The server supports both API key authentication (for stdio transport) and OAuth (for remote transports). You can also use Personal Access Tokens (PAT) for remote connections.
- Which transport method should I use?
- Stdio transport is recommended for local use as it doesn't require installation. For remote connections, HTTP transport is preferred over the legacy SSE transport.
- What data can I access through the MCP server?
- The server provides tools for accessing and managing projects, work items, cycles, modules, epics, milestones, labels, states, and comments.
Compare plane-mcp-server with
Last updated · Auto-generated from public README + GitHub signals.