Back to Fastmcp

Known Gaps and Upstream Dependencies

docs/development/v4-notes/known-gaps.mdx

4.0.0a111.9 KB
Original Source

The migration ships with a set of deliberate gaps: temporary shims, xfailed tests, and pins that depend on the MCP Python SDK v2 reaching GA. Each is tracked here with its removal trigger. This page is the checklist for the beta-to-stable transition and the advisory relationship with the SDK team.

The xfail register

Roughly forty xfail markers across the test tree name the SDK gaps and removed protocol surfaces they wait on. Re-running the suite against a new SDK beta surfaces which have closed (a strict xfail that starts passing fails the suite, prompting removal of the marker). They cluster in three areas — but the largest cluster is no longer a set of gaps to close.

Task suite (tests/server/tasks/, tests/client/tasks/) — being deleted, not fixed. The large majority. These cover the 2025 task protocol (SEP-1686), which was removed from the MCP spec entirely. FastMCP's 2025 task machinery (fastmcp_slim/fastmcp/server/tasks/) is slated for deletion rather than repair, so these xfails disappear with the code they cover — they are not waiting on an SDK fix. Users who need background tasks today stay on FastMCP 3; the official 2026 tasks extension (io.modelcontextprotocol/tasks, a separate spec) will be the modern replacement, built later through the extensions mechanism. The two SDK gaps these were originally filed against — sdk-feedback #1 (task result types omitted from the method registries) and sdk-feedback #3 (no task field on ReadResourceRequestParams / GetPromptRequestParams) — are moot for the same reason: the protocol they patched no longer exists.

Protocol eras (tests/server/test_protocol_eras.py). One remaining strict xfail, and it too is task-related: the v2 SDK high-level client exposes no task= parameter on call_tool, so a task-augmented tools/call cannot be submitted through it at any era. It resolves with the task deletion above, not on its own. The earlier strict xfail for the ctx.elicit / ctx.sample "Method not found" degradation (sdk-feedback #10) is gone — the era-gating shipped in #4448 flipped it to a passing test.

MCP Apps (tests/test_apps.py). Two xfails tied to sdk-feedback #2 — the extensions capability is stripped by the pre-2026 version sieve, so the UI extension can't be advertised to legacy-era clients.

Shims and their removal triggers

Every shim in the migration is temporary and carries a documented removal trigger.

ShimLocationRemoval trigger
_sdk_patches.py — task registry wideningfastmcp_slim/fastmcp/_sdk_patches.pyRemoved with FastMCP's 2025 task machinery (server/tasks/), which is slated for deletion now that the 2025 task protocol left the spec — or earlier, if the SDK wires tasks/* rows into the handshake-era registries first (sdk-feedback #1).
_compat.py — camelCase field bridgefastmcp_slim/fastmcp/_compat.pyUser-migration aid; removed in a future release after users migrate reads to snake_case. Users can preview removal with mcp_camelcase_compat = False.
FastMCPRequestContext ContextVarfastmcp_slim/fastmcp/server/dependencies.pyThe SDK deliberately passes context as an argument with no ContextVar; FastMCP's public get_context() needs ambient access, and the shim also lifts _meta, which the SDK's TypedDict drops. No planned removal — this is a permanent boundary, not a beta gap.
FastMCPServerMiddlewarefastmcp_slim/fastmcp/server/low_level.pyAlready the native SDK ServerMiddleware path; no cleaner hook exists. Permanent.
Client get_session_id header snifffastmcp_slim/fastmcp/client/transports/http.pySDK exposes session id (or an on_session_created callback) from streamable_http_client, at parity with sse_client (sdk-feedback #5).
_sdk_context_shim.py — generic handler aliasesfastmcp_slim/fastmcp/client/_sdk_context_shim.pyThe SDK's ClientRequestContext is not subscriptable, so FastMCP keeps the public generic SamplingHandler/RootsHandler/ElicitationHandler aliases. Permanent unless the SDK makes the context subscriptable (sdk-feedback #7).

The TaskNotificationHandler binding (sdk-feedback #8) is the client-side equivalent: it registers a NotificationBinding for notifications/tasks/status because the SDK no longer tees custom server notifications to the message handler. It goes away with the 2025 task machinery it serves.

Statelessness on 2026-07-28

The 2026-07-28 era is stateless by protocol construction, and the recurring maintainer question is whether that statelessness has to be woven through FastMCP everywhere. It does not — but the honest accounting has three parts: features that are legacy-only because the protocol removed the mechanism, features that already work because they never relied on a session, and a short list of design holes where the current code doesn't error but also doesn't work. Everything below concerns 2026-07-28 connections only. Every client in the field today negotiates a handshake era, where all of this behaves exactly as it always has.

The SDK ground truth. On the modern paths the SDK's Connection is strictly per-request: a fresh Connection is built from each POST's envelope, its exit_stack unwinds when the request returns, connection.session_id is always None, and connection.state is a fresh dict per request. The manager's stateless flag never enters the picture — modern routing short-circuits ahead of it. There is no standing server→client stream: notifications emitted during a request ride that POST's own SSE sink, and anything emitted after the POST returns is dropped (_NO_CHANNEL); server→client requests raise NoBackChannelError. The only replacement is subscriptions/listen, which carries four list-changed / resource-updated event kinds and nothing else — no logging, progress, or task-status events, no resumability, and it is not yet wired into FastMCP. There is no EventStore or Last-Event-ID on modern paths at all; both belong to the legacy transport.

Legacy-only by construction — document, don't build

These are not bugs. The protocol removed the mechanism they depend on, so they are simply out of scope on 2026-07-28:

  • Per-session log levels. logging/setLevel is absent from the 2026 method registry, so the _client_log_levels handler is unreachable. There is no per-session log-level state because there is no session.
  • EventStore / resumability. EventStore, SessionScopedEventStore, and Last-Event-ID resumption are never constructed on the modern paths. Resumability presupposes a durable stream, which the era does not have.
  • Ping keepalive. Server-initiated ping is a server→client request and is therefore structurally a no-op on modern connections; the SDK owns SSE-level pings on this transport.

Already stateless by construction — works on 2026

These work on 2026-07-28 today because they never leaned on a protocol session:

  • tasks/get polling. Task result retrieval is keyed by task_id and backed by Docket/Redis, so a client polls across independent requests without any session affinity. (This is 2025 task machinery, itself slated for deletion — see the xfail register.)
  • OAuth bearer validation. Auth is per-request bearer validation — every POST carries and re-validates its own credential.
  • In-request progress and logging notifications. Notifications emitted while a request is still streaming ride that POST's SSE sink and are delivered normally.

Design holes deferred to the multi-protocol workstream

The remaining items are real holes, deferred to the first-class 2026 client workstream because they all reduce to one unanswered question — what is a session when the protocol has none? The danger in each is that the code currently returns without erroring, which reads as "works" but is actually silent degradation. Again: these affect 2026-07-28 connections only; on the handshake eras every one of them behaves correctly.

  • ctx.session_id and ctx.set_state / ctx.get_state (broken even single-replica). On a modern request ctx.session_id mints a fresh uuid4, cached on the per-request connection.state that is discarded when the request returns. So ctx.set_state and ctx.get_state silently never round-trip across requests — no error, just lost data. The open design decision is whether session_id should become None with set_state documented as session-era-only, or be re-based on an app-level key (the auth subject, or a client-supplied header).
  • Task push and background elicitation — moot; the 2025 task machinery is being deleted. This was previously framed as a statelessness design hole to solve in the client workstream. It is not. The 2025 task protocol was removed from the MCP spec, and FastMCP's 2025 task machinery is slated for deletion rather than being made stateless-safe (see the xfail register). Background tasks today are a FastMCP 3 story; on 2026 connections the modern elicitation path is the guard-mode InputRequiredResult, not a back-channel from a task. The official 2026 tasks extension, when built, is a separate spec layered on the extensions mechanism.
  • Stateful proxy affinity (degraded). The stateful proxy's _caches are keyed by the per-request Connection, so on modern connections the proxy collapses to stateless proxying: results stay correct, but the per-session affinity guarantee is lost. This is decided alongside the session_id question — same root — or gated to the legacy/stdio transports.

Multi-replica concerns (per-process rate-limiter buckets, shared Redis backends for state and tasks, a Redis SubscriptionBus) are deployment configuration rather than protocol gaps and are out of scope for this section.

Upstream advisory dossier

FastMCP acts as an advisor to the SDK team. The migration produced a dossier of ten findings (sdk-feedback.md) — verified bugs and hard edges to report upstream, plus questions to bundle into a feedback thread. The highest-priority items:

  • #1 (bug) — SEP-1686 task result types ship but the method registries omit them. Moot: the 2025 task protocol was removed from the spec and FastMCP's task machinery is being deleted, so there is nothing left to report.
  • #2 (bug/question)capabilities.extensions stripped at pre-2026 negotiated versions.
  • #4 (security) — DCR redirect-URI validation accepts javascript:/data: schemes.
  • #5 (hard edge)streamable_http_client drops session-id access with no replacement.
  • #8 (hard edge) — custom server notifications are dropped, not tee'd to message_handler.
  • #10 (hard edge) — 2026 push-feature degradation error quality is inconsistent. Resolved on the FastMCP side: ctx.elicit / ctx.sample are era-gated to raise a clear error on modern connections (#4448).

Filing is gated on maintainer approval of each issue text.

Separately, the SDK delegation round two work depends on three upstream feature requests — per-session event-store scoping, a user-middleware injection hook, and a lifespan hook — that would let FastMCP collapse its HTTP builders onto the SDK's and inherit the SDK's session-owner credential enforcement.

GA transition checklist

The beta-to-stable transition is a small set of tracked steps:

  • Swap the pins. When mcp 2.0.0 reaches GA, change mcp-types==2.0.0b1 (core) and the mcp pin (the [mcp] extra) in fastmcp_slim/pyproject.toml from the beta to the stable release, and cut 4.0.0 instead of another pre-release.
  • Re-run the xfail suite against the GA SDK. Any strict xfail that starts passing means a gap closed — remove the marker and, where applicable, the corresponding shim.
  • Confirm release/3.x is cut from pre-merge main and receiving upstream security patches for users who stay on the SDK v1 line.