-
Notifications
You must be signed in to change notification settings - Fork 750
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
Added support for raw request injection in RequestContext. #380
base: main
Are you sure you want to change the base?
Added support for raw request injection in RequestContext. #380
Conversation
@dsp-ant, I am not sure how the reviewing process works here. I was not able to add reviewers to this PR. Will somebody eventually be assigned as reviewer to this PR? |
pls merge this it's really essential to develop professional remote mcp servers! |
Thank you @georg-ort! I am hoping that someone will review it and approve it so that I may merge the PR. |
Well I have to thank you @ylassoued! I'm currently using your fork in order to progress since I do need authentication context in my tool calls or our product wouldn't work. |
Oh brilliant. Thank you @georg-ort for supporting this. I am glad somebody if finding it useful :-). |
Thank you so much for this, @ylassoued! This looks incredibly useful across a variety of contexts. I actually ran into the exact same situation where I needed authentication context in my tool calls and came across your PR. Really appreciate you putting this together. Fingers crossed it gets reviewed and merged soon! |
Thank you very much @emilioflc. My pleasure :-). |
closes #195
Added support for injecting the raw request into the
RequestContext
.Motivation and Context
In real-life applications, authentication may rely on request headers. In the case where the MCP server needs to act on behalf of the client to retrieve resources from a remote server or DB, thus requiring to authenticate on behalf of the client, getting the request headers is essential.
With the solution implemented in this PR, you may access the raw request from any end point as follows:
How Has This Been Tested?
Breaking Changes
The only breaking change is in typing. As a matter of fact the following generic classes have now an additional type argument
RequestT
(raw request type):class RequestContext(Generic[SessionT, LifespanContextT, RequestT])
class Server(Generic[LifespanResultT, RequestT])
Types of changes
Checklist
Additional context