Cloudflare Worker MCP endpoint

Plane MCP Worker

给 Codex 配置 Plane MCP,并安装一个轻量 skill,让 Codex 更稳定地查询你的 Plane 项目、待办和工作项。

MCP Endpoint

https://mcp.plane.bowong.cc/mcp

类型选择 HTTP / Streamable HTTP MCP server。

1. 在 Codex 中配置 MCP

添加一个远程 MCP server,URL 使用:

https://mcp.plane.bowong.cc/mcp

请求头至少配置 Plane API token;workspace slug 可以作为请求头配置,也可以在工具调用里传。

Authorization: Bearer <plane-api-token>
X-Plane-Workspace-Slug: <workspace-slug>

也支持这些 token header:X-Plane-Api-KeyX-Api-KeyPlane-Api-Key

2. 安装 Codex Skill

在 PowerShell 里运行:

$skillDir = "$env:USERPROFILE\.codex\skills\plane-mcp"
New-Item -ItemType Directory -Force "$skillDir\agents" | Out-Null
Invoke-WebRequest -UseBasicParsing "https://mcp.plane.bowong.cc/skill/SKILL.md" -OutFile "$skillDir\SKILL.md"
Invoke-WebRequest -UseBasicParsing "https://mcp.plane.bowong.cc/skill/agents/openai.yaml" -OutFile "$skillDir\agents\openai.yaml"

安装后重启 Codex,之后可以直接说:用 Plane MCP 查一下我还有多少待办

3. 验证