MCP Catalogs
Home

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.

productivitydeveloper-toolsother
92
Forks
44
Open issues
this month
Last commit
2d ago
Indexed

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:

you:Automating project creation and management workflows
you:Synchronizing work items between Plane and other tools
you:Generating reports from project data through AI assistants
you:What authentication methods are supported?
you:Which transport method should I use?
you:What data can I access through the MCP server?

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 README
  • list_projects

    List all projects in a workspace with optional pagination and filtering

  • create_project

    Create a new project with name, identifier, and optional configuration

  • list_work_items

    List all work items in a project with optional filtering and pagination

  • create_work_item

    Create a new work item with name, assignees, labels, and other attributes

  • retrieve_work_item

    Retrieve a work item by ID with optional field expansion

  • update_work_item

    Update a work item with partial data

  • list_cycles

    List all cycles in a project

  • create_cycle

    Create a new cycle with name, dates, and owner

  • retrieve_project

    Retrieve a project by ID

  • delete_work_item

    Delete a work item by ID

  • list_epics

    List all epics in a project

  • create_epic

    Create a new epic

Comparable tools

linear-mcpjira-mcpgithub-mcpnotion-mcp

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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.