Plane MCP Server
A Model Context Protocol (MCP) server for Plane integration. This server provides tools and resources for interacting with Plane through AI agents.
Features
- 🔧 Plane Integration: Interact with Plane APIs and services
- 🔌 Multiple Transports: Supports stdio, SSE, and streamable HTTP transports
- 🌐 Remote & Local: Works both locally and as a remote service
- 🛠️ Extensible: Easy to add new tools and resources
Usage
The server supports three transport methods. We recommend using uvx as it doesn't require installation.
Requirements:
- Python 3.10+ (for stdio transport, via
uvx) - Node.js 22+ (for remote transports, via
npx)
1. Stdio Transport (for local use)
MCP Client Configuration (using uvx - recommended):
{
"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"
}
}
}
}





