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

McpTool only supports returning text types, not image #68

Closed
aaronpowell opened this issue Mar 23, 2025 · 2 comments · Fixed by #89
Closed

McpTool only supports returning text types, not image #68

aaronpowell opened this issue Mar 23, 2025 · 2 comments · Fixed by #89
Assignees
Labels
enhancement New feature or request

Comments

@aaronpowell
Copy link
Contributor

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 a McpTool 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

@aaronpowell
Copy link
Contributor Author

Just checking that this is now supported, as I couldn't grasp from #89 how to return different stuff from McpServerTool - is it a case of creating a Content object and returning that?

@stephentoub
Copy link
Contributor

You can return a DataContent:

case DataContent dataContent:
return new()
{
Content = [new()
{
Data = dataContent.GetBase64Data(),
MimeType = dataContent.MediaType,
Type = dataContent.HasTopLevelMediaType("image") ? "image" : "resource",
}]
};

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. Content might be a good candidate.

aaronpowell added a commit to aaronpowell/modelcontextprotocol-csharp-sdk that referenced this issue Mar 27, 2025
This will mean we can return multiple AIContent objects from a tool, such as a mixed text/image set

Contributes to modelcontextprotocol#68
stephentoub pushed a commit that referenced this issue Mar 27, 2025
* 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants