-
Notifications
You must be signed in to change notification settings - Fork 765
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
Conversation
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.
@@ -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") |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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.
This PR doesn't fix the typing tho |
I am confused, it very much fixes the issue for me |
Summary
Fix type error when using strongly typed custom lifespan contexts with FastMCP.