MCP Catalogs
首页

plane-mcp-server

by makeplane·225·综合分 50

Plane 的官方 MCP 服务器提供了完整的项目管理、工作项、周期和模块等功能,支持多种传输协议。

productivitydeveloper-toolsother
92
Forks
44
活跃 Issue
本月
最近提交
2 天前
收录于

概述

这个由 Plane 开发的 MCP 服务器提供了丰富的项目管理工具集。它支持多种传输方式,包括 stdio、SSE 和 HTTP,可与不同的客户端环境兼容。该服务器实现了全面的 API,涵盖项目、工作项、周期、模块、史诗、里程碑、标签等功能。它同时支持 API 密钥和 OAuth 令牌认证,可根据不同用例灵活配置。

试试问 AI

装完之后,这里有 6 个你可以让 AI 做的事:

:自动化项目管理工作流
:在 Plane 和其他工具之间同步工作项
:通过 AI 助手从项目数据生成报告
:支持哪些认证方法?
:应该使用哪种传输方式?
:可以通过 MCP 服务器访问哪些数据?

什么时候选它

如果您已经在使用Plane进行项目管理,并希望AI代理能够以编程方式与您的Plane工作区交互,请选择此MCP服务器。

什么时候不要选它

如果您需要超出Plane API提供的写入权限,或担心对Plane生态系统产生厂商锁定,请不要选择此服务器。

此 server 暴露的工具

从 README 抽取出 12 个工具
  • 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

可对比工具

linear-mcpjira-mcpgithub-mcpnotion-mcp

安装

安装

Plane MCP 服务器支持多种传输方式:

**1. Stdio 传输(推荐)**

uvx plane-mcp-server stdio

**2. 远程 HTTP 传输(OAuth)**

npx mcp-remote@latest https://mcp.plane.so/http/mcp

**Claude Desktop 配置**

{
  "mcpServers": {
    "plane": {
      "command": "uvx",
      "args": ["plane-mcp-server", "stdio"],
      "env": {
        "PLANE_API_KEY": "<你的-api-key>",
        "PLANE_WORKSPACE_SLUG": "<你的工作区标识>",
        "PLANE_BASE_URL": "https://api.plane.so"
      }
    }
  }
}

FAQ

支持哪些认证方法?
服务器支持 API 密钥认证(用于 stdio 传输)和 OAuth(用于远程传输)。您还可以使用个人访问令牌 (PAT) 进行远程连接。
应该使用哪种传输方式?
推荐使用 stdio 传输进行本地使用,因为它不需要安装。对于远程连接,HTTP 传输优于过时的 SSE 传输。
可以通过 MCP 服务器访问哪些数据?
服务器提供了用于访问和管理项目、工作项、周期、模块、史诗、里程碑、标签、状态和评论的工具。

plane-mcp-server 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。