#mcp
1 messages · Page 1 of 1 (latest)
This solution has been AI generated
是的,/sse 不是官方的 MCP 入口,因此会返回 404。请改用 https://mcp.copilotkit.ai/mcp 作为服务地址。下面是来自代码库的正确配置示例。
正确服务地址
- MCP 统一入口:
https://mcp.copilotkit.ai/mcp - 传输可为 http 或 sse(取决于客户端),但路径保持为
/mcp,而非/sse。
配置示例
- Claude Desktop 中添加:
claude mcp add --transport http copilotkit-mcp https://mcp.copilotkit.ai/mcp
- CopilotKit Runtime(代码中):
mcpServers: [
{
name: "CopilotKit MCP",
url: "https://mcp.copilotkit.ai/mcp",
},
]
- Cursor/其他 IDE(远程 MCP):
npx mcp-remote https://mcp.copilotkit.ai/mcp
注意事项
- 旧文档可能出现过不同路径描述;当前统一入口为
/mcp。 - MCP 在 CopilotKit 中仍处于快速演进阶段,如持续异常,建议关注官方 Discord/GitHub。
参考文档
Was this helpful?
If this solution worked for you, please click on the appropriate option below to help us improve:
Thank you for confirming that your issue has been resolved! ✅
但是官方在线文档里面没有知道这个配置的描述呀?
而且是不是有改动过,我之前用这个sse的地址是没问题的