Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #355: Fix type error with lifespan context #368

Merged
merged 3 commits into from
Mar 26, 2025

Conversation

dsp-ant
Copy link
Member

@dsp-ant dsp-ant commented Mar 25, 2025

Summary

Fix type error when using strongly typed custom lifespan contexts with FastMCP.

  • The TypeVar was incorrectly defined with
  • This change removes the default, allowing proper type propagation
  • Fixed type annotations in relevant places to maintain type safety
  • Added test case demonstrating the fixed functionality

The TypeVar LifespanContextT was incorrectly defined with a default=None, which caused type errors when using strongly typed custom context objects. This change properly propagates the type information from custom lifespans to request contexts.
@dsp-ant dsp-ant requested a review from Kludex March 25, 2025 12:11
@@ -7,7 +7,7 @@
from mcp.types import RequestId, RequestParams

SessionT = TypeVar("SessionT", bound=BaseSession[Any, Any, Any, Any, Any])
LifespanContextT = TypeVar("LifespanContextT", default=None)
LifespanContextT = TypeVar("LifespanContextT")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But doesn't it makes sense to default to None on FastMCP context?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FastMCP sets the default lifespan which yields and empty dictionary. There is actually never a None. This one defaults to Any, if default is not set, which I think is correct.

@dsp-ant dsp-ant requested a review from Kludex March 25, 2025 15:38
@Kludex Kludex enabled auto-merge (squash) March 26, 2025 08:11
@Kludex Kludex disabled auto-merge March 26, 2025 08:11
@Kludex
Copy link
Member

Kludex commented Mar 26, 2025

This PR doesn't fix the typing tho

@dsp-ant
Copy link
Member Author

dsp-ant commented Mar 26, 2025

This PR doesn't fix the typing tho

I am confused, it very much fixes the issue for me

@dsp-ant dsp-ant merged commit df2d3a5 into main Mar 26, 2025
8 checks passed
@dsp-ant dsp-ant deleted the fix-355-type-error-lifespan-context branch March 26, 2025 14:18
@Kludex
Copy link
Member

Kludex commented Mar 26, 2025

🤔

Screenshot 2025-03-26 at 15 23 56

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants