其他 Agent
@easypm/mcp 通过 stdio 与任何兼容 MCP 的 Agent 通信。
Windsurf
Settings → Plugins → MCP → Add Server:
{
"command": "npx",
"args": ["-y", "@easypm/mcp"],
"env": {
"EASYPM_API_KEY": "eapk_live_xxx",
"EASYPM_CLIENT_ID": "eacli_xxx"
}
}
Cline (VS Code)
Ctrl+Shift+P → "Cline: Open MCP Servers Panel" → "Edit MCP Settings"。
{
"mcpServers": {
"easypm": {
"command": "npx",
"args": ["-y", "@easypm/mcp"],
"env": {
"EASYPM_API_KEY": "eapk_live_xxx",
"EASYPM_CLIENT_ID": "eacli_xxx"
}
}
}
}
Trae (字节跳动)
设置 → MCP → 添加 MCP Server。
Continue.dev
编辑 ~/.continue/config.json:
{
"experimental": {
"modelContextProtocolServers": [
{
"name": "easypm",
"command": "npx",
"args": ["-y", "@easypm/mcp"],
"env": { "EASYPM_API_KEY": "eapk_live_xxx", "EASYPM_CLIENT_ID": "eacli_xxx" }
}
]
}
}
通义灵码 / Lingma
通义灵码目前 MCP 通过 Custom MCP Servers 配置(位置在 Settings → AI Assistant → MCP)。格式同上。
Zed
~/.config/zed/settings.json:
{
"context_servers": {
"easypm": {
"command": { "path": "npx", "args": ["-y", "@easypm/mcp"] },
"env": { "EASYPM_API_KEY": "...", "EASYPM_CLIENT_ID": "..." }
}
}
}
检查连通性
每个 Agent 启动后都会自动调 tools/list。如果看到类似:
easypm: tools ready (notes_list, notes_create, tasks_list, tasks_create, ...)
说明 MCP server 已连接。