feat: support extending McpServer with authorization #249
+27
−19
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.
Let's make some of the private members of McpServer accessible to its subclasses. This way, the community can easily build additional layers on top of the official version without needing to start from scratch.
Motivation and Context
We wanted to share some thoughts about the built-in McpServer. It's got some really handy methods like
tool
,prompt
, andresource
that make setting up an MCP server a breeze. However, it doesn't currently allow for any extensions, which makes it a bit tricky for us to implement server-side authorization for each tool call based on the current user session. We also feel that creating a whole new MCP server framework isn't the best route, especially since the official one works well in most scenarios.With that in mind, we're suggesting a couple of changes:
user
property to theTransport
and ensure it's accessible in theextra
parameter during tool calls.We did a bit of digging and found a potentially related issue here: #171
We'd love to hear your thoughts on this!
How Has This Been Tested?
Yes, we have tested this in: https://github.com/blocklet/mcp-server-demo
Breaking Changes
No, there are no any breaking changes to existing features.
Types of changes
Checklist
Additional context
Example McpServer extension (with flexible access control policy):
And usage example for above usage: