-
Notifications
You must be signed in to change notification settings - Fork 779
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
Resource Mime Type is ignored #152
Labels
Comments
Thank you for reporting this. I can confirm that his is a bug. I'll take a look. |
dsp-ant
added a commit
that referenced
this issue
Jan 24, 2025
4 tasks
#170 should be a fix for this. |
dsp-ant
added a commit
that referenced
this issue
Jan 24, 2025
The server was ignoring mime types set on resources, defaulting to text/plain for strings and application/octet-stream for bytes. Now properly preserves the specified mime type in both FastMCP and low-level server implementations. Note that this is breaks backwards compatibility as it changes the return values of read_resource() on FastMCP. It is BC compatible on lowlevel since it only extends the callback. Github-Issue: #152 Reported-by: eiseleMichael
dsp-ant
added a commit
that referenced
this issue
Jan 24, 2025
Update README examples to show proper handling of the new read_resource() return value that includes mime type information. Github-Issue:#152
dsp-ant
added a commit
that referenced
this issue
Jan 27, 2025
dsp-ant
added a commit
that referenced
this issue
Jan 27, 2025
The server was ignoring mime types set on resources, defaulting to text/plain for strings and application/octet-stream for bytes. Now properly preserves the specified mime type in both FastMCP and low-level server implementations. Note that this is breaks backwards compatibility as it changes the return values of read_resource() on FastMCP. It is BC compatible on lowlevel since it only extends the callback. Github-Issue: #152 Reported-by: eiseleMichael
dsp-ant
added a commit
that referenced
this issue
Jan 27, 2025
Update README examples to show proper handling of the new read_resource() return value that includes mime type information. Github-Issue:#152
dsp-ant
added a commit
that referenced
this issue
Jan 27, 2025
Introduce ReadResourceContents type to properly handle MIME types in resource responses. Breaking change in FastMCP read_resource() return type. Github-Issue:#152
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Setting a mime type on a Ressource using FastMCP is being ignored by the low level server as the returned type is based on the ReadResourceRequest result type.
To Reproduce
Create any resource that returns a base64 string and explicitly sets a mime type, e.g.:
Invoke either directly or using the MCP inspector
Actual behavior
It returns
Note: a resource that it as bytes does not make much of a difference, it just changes the mime type to the very generic octet-stream.
Expected behavior
It should respect the mime type for both string and bytes content.
If you need a repo to reproduce it, I'm happy to help.
MCP version 1.2.0.
The text was updated successfully, but these errors were encountered: