Plane MCP Server

Plane MCP Server

A Model Context Protocol server that enables AI interfaces to seamlessly interact with Plane's project management system, allowing management of projects, issues, states, and other work items through a standardized API.

Category
访问服务器

README

Plane MCP Server

The Plane MCP Server is a Model Context Protocol (MCP) server that provides seamless integration with Plane APIs, enabling projects, work items, and automations capabilities for develops and AI interfaces.

Use Cases

  • Create, update Projects and Work items
  • Assign People, Properties, and Write Comments to progress on the Work
  • Move and observe with various Work items in States
  • Add Labels to the Work items
  • Extracting and analyzing data from Projects and Members inside Plane
  • Building AI powered tools and applications that interact with Plane's ecosystem

Configuration Parameters

  1. PLANE_API_KEY - The user's API token. This can be obtained from the /settings/api-tokens/ page in the UI.
  2. PLANE_WORKSPACE_SLUG - The workspace slug for your Plane instance.
  3. PLANE_API_HOST_URL (optional) - The host URL of the Plane API Server. Defaults to https://api.plane.so/

Tools

Users

  • get_user - Get the current user's information
    • No parameters required

Projects

  • get_projects - Get all projects for the current user

    • No parameters required
  • create_project - Create a new project

    • name: Project name (string, required)

Issue Types

  • list_issue_types - Get all issue types for a specific project

    • project_id: UUID of the project (string, required)
  • get_issue_type - Get details of a specific issue type

    • project_id: UUID of the project (string, required)
    • type_id: UUID of the issue type (string, required)
  • create_issue_type - Create a new issue type in a project

    • project_id: UUID of the project (string, required)
    • issue_type_data: Object containing:
      • name: Name of the issue type (string, required)
      • description: Description of the issue type (string, required)
  • update_issue_type - Update an existing issue type

    • project_id: UUID of the project (string, required)
    • type_id: UUID of the issue type (string, required)
    • issue_type_data: Fields to update on the issue type (object)
  • delete_issue_type - Delete an issue type

    • project_id: UUID of the project (string, required)
    • type_id: UUID of the issue type (string, required)

States

  • list_states - Get all states for a specific project

    • project_id: UUID of the project (string, required)
  • get_state - Get details of a specific state

    • project_id: UUID of the project (string, required)
    • state_id: UUID of the state (string, required)
  • create_state - Create a new state in a project

    • project_id: UUID of the project (string, required)
    • state_data: Object containing:
      • name: Name of the state (string, required)
      • color: Color code for the state (string, required)
  • update_state - Update an existing state

    • project_id: UUID of the project (string, required)
    • state_id: UUID of the state (string, required)
    • state_data: Fields to update on the state (object)
  • delete_state - Delete a state

    • project_id: UUID of the project (string, required)
    • state_id: UUID of the state (string, required)

Labels

  • list_labels - Get all labels for a specific project

    • project_id: UUID of the project (string, required)
  • get_label - Get details of a specific label

    • project_id: UUID of the project (string, required)
    • label_id: UUID of the label (string, required)
  • create_label - Create a new label in a project

    • project_id: UUID of the project (string, required)
    • label_data: Object containing:
      • name: Name of the label (string, required)
      • color: Color code for the label (string, required)
  • update_label - Update an existing label

    • project_id: UUID of the project (string, required)
    • label_id: UUID of the label (string, required)
    • label_data: Fields to update on the label (object)
  • delete_label - Delete a label

    • project_id: UUID of the project (string, required)
    • label_id: UUID of the label (string, required)

Issues

  • get_issue_using_readable_identifier - Get issue details using readable identifier (e.g., PROJ-123)

    • project_identifier: Project identifier (e.g., "PROJ") (string, required)
    • issue_identifier: Issue number (e.g., "123") (string, required)
  • get_issue_comments - Get all comments for a specific issue

    • project_id: UUID of the project (string, required)
    • issue_id: UUID of the issue (string, required)
  • add_issue_comment - Add a comment to an issue

    • project_id: UUID of the project (string, required)
    • issue_id: UUID of the issue (string, required)
    • comment_html: HTML content of the comment (string, required)
  • create_issue - Create a new issue

    • project_id: UUID of the project (string, required)
    • issue_data: Object containing:
      • name: Title of the issue (string, required)
      • description_html: HTML description of the issue (string, required)
  • update_issue - Update an existing issue

    • project_id: UUID of the project (string, required)
    • issue_id: UUID of the issue (string, required)
    • issue_data: Fields to update on the issue (object)

Modules

  • list_modules - Get all modules for a specific project

    • project_id: UUID of the project (string, required)
  • get_module - Get details of a specific module

    • project_id: UUID of the project (string, required)
    • module_id: UUID of the module (string, required)
  • create_module - Create a new module in a project

    • project_id: UUID of the project (string, required)
    • module_data: Object containing:
      • name: Name of the module (string, required)
  • update_module - Update an existing module

    • project_id: UUID of the project (string, required)
    • module_id: UUID of the module (string, required)
    • module_data: Fields to update on the module (object)
  • delete_module - Delete a module

    • project_id: UUID of the project (string, required)
    • module_id: UUID of the module (string, required)

Module Issues

  • list_module_issues - Get all issues for a specific module

    • project_id: UUID of the project (string, required)
    • module_id: UUID of the module (string, required)
  • add_module_issues - Add issues to a module

    • project_id: UUID of the project (string, required)
    • module_id: UUID of the module (string, required)
    • issues: Array of issue UUIDs to add (string[], required)
  • delete_module_issue - Remove an issue from a module

    • project_id: UUID of the project (string, required)
    • module_id: UUID of the module (string, required)
    • issue_id: UUID of the issue to remove (string, required)

Cycles

  • list_cycles - Get all cycles for a specific project

    • project_id: UUID of the project (string, required)
  • get_cycle - Get details of a specific cycle

    • project_id: UUID of the project (string, required)
    • cycle_id: UUID of the cycle (string, required)
  • create_cycle - Create a new cycle in a project

    • project_id: UUID of the project (string, required)
    • cycle_data: Object containing:
      • name: Name of the cycle (string, required)
      • start_date: Start date (YYYY-MM-DD) (string, required)
      • end_date: End date (YYYY-MM-DD) (string, required)
  • update_cycle - Update an existing cycle

    • project_id: UUID of the project (string, required)
    • cycle_id: UUID of the cycle (string, required)
    • cycle_data: Fields to update on the cycle (object)
  • delete_cycle - Delete a cycle

    • project_id: UUID of the project (string, required)
    • cycle_id: UUID of the cycle (string, required)

Cycle Issues

  • list_cycle_issues - Get all issues for a specific cycle

    • project_id: UUID of the project (string, required)
    • cycle_id: UUID of the cycle (string, required)
  • add_cycle_issues - Add issues to a cycle

    • project_id: UUID of the project (string, required)
    • cycle_id: UUID of the cycle (string, required)
    • issues: Array of issue UUIDs to add (string[], required)
  • delete_cycle_issue - Remove an issue from a cycle

    • project_id: UUID of the project (string, required)
    • cycle_id: UUID of the cycle (string, required)
    • issue_id: UUID of the issue to remove (string, required)

Work Logs

  • get_issue_worklogs - Get all worklogs for a specific issue

    • project_id: UUID of the project (string, required)
    • issue_id: UUID of the issue (string, required)
  • get_total_worklogs - Get total logged time for a project

    • project_id: UUID of the project (string, required)
  • create_worklog - Create a new worklog for an issue

    • project_id: UUID of the project (string, required)
    • issue_id: UUID of the issue (string, required)
    • worklog_data: Object containing:
      • description: Description of the work done (string, required)
      • duration: Duration in minutes (integer, required)
  • update_worklog - Update an existing worklog

    • project_id: UUID of the project (string, required)
    • issue_id: UUID of the issue (string, required)
    • worklog_id: UUID of the worklog (string, required)
    • worklog_data: Fields to update on the worklog (object)
  • delete_worklog - Delete a worklog

    • project_id: UUID of the project (string, required)
    • issue_id: UUID of the issue (string, required)
    • worklog_id: UUID of the worklog (string, required)

Usage

Claude Desktop

Add Plane to Claude Desktop by editing your claude_desktop_config.json.

{
  "mcpServers": {
    "plane": {
       "command": "npx",
      "args": [
        "-y",
        "@makeplane/plane-mcp-server"
      ],
      "env": {
        "PLANE_API_KEY": "<YOUR_API_KEY>",
        "PLANE_API_HOST_URL": "<HOST_URL_FOR_SELF_HOSTED",
        "PLANE_WORKSPACE_SLUG": "<YOUR_WORKSPACE_SLUG>"
      }
    }
  }
}

VSCode

Add Plane to VSCode by editing your .vscode.json/mcp.json.

{
  "servers": {
    "plane": {
      "command": "npx",
      "args": [
        "-y",
        "@makeplane/plane-mcp-server"
      ],
      "env": {
        "PLANE_API_KEY": "<YOUR_API_KEY>",
        "PLANE_API_HOST_URL": "<HOST_URL_FOR_SELF_HOSTED",
        "PLANE_WORKSPACE_SLUG": "<YOUR_WORKSPACE_SLUG>"
      }
    }
  }
}

License

This project is licensed under the terms of the MIT open source license.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选