Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2025-07-28 | 932 Bytes | |
v0.4.0 source code.tar.gz | 2025-07-28 | 183.7 kB | |
v0.4.0 source code.zip | 2025-07-28 | 213.0 kB | |
Totals: 3 Items | 397.6 kB | 6 |
🚀 FastAPI-MCP now supports Streamable HTTP transport.
HTTP transport is now the recommended approach, following the specification that positions HTTP as the standard while maintaining SSE for backwards compatibility.
⚠️ Breaking Changes
mount()
method is deprecated and will be removed in a future version. Usemount_http()
for HTTP transport (recommended) ormount_sse()
for SSE transport.
Added
- 🎉 Streamable HTTP Transport Support - New
mount_http()
method implementing the MCP Streamable HTTP specification - 🎉 Stateful Session Management - For both HTTP and SSE transports
PRs
- Add streamable http support by @shahar4499 in https://github.com/tadata-org/fastapi_mcp/pull/206
- bump version to 0.4.0 by @shahar4499 in https://github.com/tadata-org/fastapi_mcp/pull/207
Full Changelog: https://github.com/tadata-org/fastapi_mcp/compare/v0.3.7...v0.4.0