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 #177: Returning multiple tool results #222

Merged
merged 2 commits into from
Feb 20, 2025

Conversation

dsp-ant
Copy link
Member

@dsp-ant dsp-ant commented Feb 20, 2025

This was an attempt to fix #177. However I noted that in FastMCP a resource is bound to mime type in the decorator. Hence return a list of multiple resources, as the spec allows, is nonsensical without overcomplicating the interface. I hence only changed it in the lowlevel SDK. The assumption here is that needing to return multiple resources is rare enough to justify dropping to the lowlevel API.

I can see us in the longrun expanding resource() interface in FastMCP to allow for this, but i am honestly not yet convinced this is in the spirit of FastMCP.

Notable tools can already return multiple values in FastMCP.

The resource/read message in MCP allows of multiple resources
to be returned. However, in the SDK we do not allow this. This
change is such that we allow returning multiple resource in
the lowlevel API if needed. However in FastMCP we stick to
one, since a FastMCP resource defines the mime_type in the decorator
and hence a resource cannot dynamically return different mime_typed resources.
It also is just the better default to only return one resource.
However in the lowlevel API we will allow this.

Strictly speaking this is not a BC break since the new return value
is additive, but if people subclassed server, it will break them.
@dsp-ant dsp-ant merged commit b1942b3 into main Feb 20, 2025
5 checks passed
@dsp-ant dsp-ant deleted the davidsp/177-multiple-resources branch February 20, 2025 21:31
dsp-ant added a commit that referenced this pull request Feb 20, 2025
* feat: allow lowlevel servers to return a list of resources

The resource/read message in MCP allows of multiple resources
to be returned. However, in the SDK we do not allow this. This
change is such that we allow returning multiple resource in
the lowlevel API if needed. However in FastMCP we stick to
one, since a FastMCP resource defines the mime_type in the decorator
and hence a resource cannot dynamically return different mime_typed resources.
It also is just the better default to only return one resource.
However in the lowlevel API we will allow this.

Strictly speaking this is not a BC break since the new return value
is additive, but if people subclassed server, it will break them.

* feat: lower the type requriements for call_tool to Iterable
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.

Returning multiple Resource and Tool results from FastMCP and Lowlevel
2 participants