-
Notifications
You must be signed in to change notification settings - Fork 436
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
Proposal: render
method for an McpServer
#233
base: main
Are you sure you want to change the base?
Conversation
…method and accessors
… the render function is enough
So React-y with |
I think something like this has potential, but IMO there's a bit of an impedance mismatch between the There was some exploration of a "JSX for MCP servers" which maybe would fit more naturally, but folks might have allergic reaction to that. Note also that it is possible to add everything with the higher-level API right now, and then emit |
Oh I missed #116 entirely! Thanks for the link, I will continue the discussion tehre. I think it makes sense to break this PR into two pieces then. First:
Then, in a follow-up PR, use these new primitives to build a |
Step one complete, PR is ready for review: #247 Will update this PR once I have time and mark it as non-draft when it's worth you taking another look @jspahrsummers |
Motivation and Context
Currently, the design of the
McpServer
makes it easy to define servers whose resources/tools/prompts are static and known ahead of time:There's nothing stopping you from adding tools/prompts/resources after connecting, but it also doesn't broadcast
list_changed
events if you were to do so. So there's not really a good way to make a "dynamic"McpServer
without dropping down a level and building your own abstraction using aServer
.I've been looking for a neat API which can make these servers dynamic without needing a complete restructure of the class. This is the best I've come up with: adding the concept of a
render
function where the output is diffed to the previous version to emit change events:As written, the
render()
function could observe some external state to choose to hide/show/tweak aspects of the server, but I think it makes more sense ifrender
takes an argument:This feels like the most natural way to take the current API and make it dynamic, though there's plenty of alternatives.
Anyway, I thought I'd raise this as a draft PR to see if there was any interest in the API itself, before I finish it off. Currently it needs a smarter diffing algorithm (currently only looks for things being added/removed, but a change of description should probably fire an event too), as well as some tests.
How Has This Been Tested?
Draft PR, untested as yet
Breaking Changes
None
Types of changes
Checklist
Additional context