[codex] Fix FastMCP context argument schemas#7
Merged
Conversation
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
cobanov
added a commit
that referenced
this pull request
May 21, 2026
Patch release shipping the Context-schema fix that landed in #7. With the bug in 0.3.0, every MCP client call returned `ctx Field required` because `from __future__ import annotations` hid the Context parameter from FastMCP's detection, so the server is effectively unusable on 0.3.0 and 0.3.1 is the first working release.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix FastMCP tool registration so internal
Contextparameters are injected by the MCP server instead of being exposed as client-facing tool arguments.Root Cause
The project uses
from __future__ import annotations, soctx: Contextwas stored as a postponed annotation string at runtime. FastMCP detects context parameters from the runtime annotation before building the tool input schema, soctxwas incorrectly included as a required MCP argument. Clients then failed tool calls withctx Field required.Changes
ctxannotations to the runtimeContexttype before registering predefined tools,get_database_schema, andrun_sql.ctxis absent from client-facing tool schemas whilerun_sqlstill requiresquery.Validation
uv run ruff check src testsuv run pytest