Skip to content

1.5.3

Choose a tag to compare

@github-actions github-actions released this 04 Jul 08:34
· 15 commits to main since this release

⚠️ Breaking change:MCP 传输层升级为 Streamable HTTP

本版把内置 MCP server 从官方已弃用的老式 SSE transport 直接替换为 Streamable HTTP,对外只有单端点:

POST https://your-domain.com/api/v1/mcp

老的 /api/v1/mcp/sse + /api/v1/mcp/messages/ 不再提供。升级本镜像后,现有 MCP 客户端连接会失效,需按下面改配置(PAT 不用重建):

  • Claude Code(及其它原生支持 Streamable HTTP 的客户端)——直连,不再需要 mcp-remote
    claude mcp remove <name>
    claude mcp add --transport http <name> https://your-domain.com/api/v1/mcp \
      --header "Authorization: Bearer bcmcp_xxx"
  • Claude Desktop / Cursor / Cline(经 mcp-remote 桥接)——把 URL 从 .../api/v1/mcp/sse 改成 .../api/v1/mcp(去掉 /sse),mcp-remote 会自动协商 Streamable HTTP。

详见 docs/MCP.md · 官网文档


Docker

  • sunxiao0721/beecount-cloud:1.5.3
  • sunxiao0721/beecount-cloud:latest

Commits

Compare: 1.5.2...1.5.3

  • feat: MCP 传输层改用 Streamable HTTP(单端点 /api/v1/mcp,替换官方已弃用的 SSE) (4f420f8)