-
Notifications
You must be signed in to change notification settings - Fork 150
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
McpTool
only supports returning text types, not image
#68
Comments
Just checking that this is now supported, as I couldn't grasp from #89 how to return different stuff from |
You can return a DataContent: csharp-sdk/src/ModelContextProtocol/Server/AIFunctionMcpServerTool.cs Lines 198 to 207 in 4b70bc7
and it'll be mapped either to "image" or "resource" based on its mime type. We can augment this list with other types as well. I believe that's what #41 is tracking. |
This will mean we can return multiple AIContent objects from a tool, such as a mixed text/image set Contributes to modelcontextprotocol#68
* Adding support for returning collections from tools This will mean we can return multiple AIContent objects from a tool, such as a mixed text/image set Contributes to #68 * Code review feedback * Adding tests and some more cases * More cases in switch and tests
Is your feature request related to a problem? Please describe.
I'm attempting to build out a .NET implementation of
server-everything
and one of the features is the Tiny Image Tool which returns a combination of text and image messages (https://github.com/modelcontextprotocol/servers/blob/e328131d99847e1eae33c7a6a8156fd217cf984f/src/everything/everything.ts#L460-L479). If you implement aMcpTool
method you are unable to return something that can have different content types, as the return value is always serialized to a content type of text.Describe the solution you'd like
Some way in which you can return a different content type/collection of content types, without having to fallback to implementing a
CallToolHandler
.Describe alternatives you've considered
Implementing as a
CallToolHandler
.Additional context
Sample: https://github.com/aaronpowell/modelcontextprotocol-csharp-sdk/blob/dotnet-everything/samples/EverythingServer/Tools/TinyImageTool.cs
The text was updated successfully, but these errors were encountered: