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

Resource Mime Type is ignored #152

Closed
eiseleMichael opened this issue Jan 15, 2025 · 2 comments · Fixed by #170
Closed

Resource Mime Type is ignored #152

eiseleMichael opened this issue Jan 15, 2025 · 2 comments · Fixed by #170
Labels
bug Something isn't working help wanted Extra attention is needed

Comments

@eiseleMichael
Copy link

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.:

@mcp.resource("hackernews://get_logo", mime_type="image/png")
def get_logo() -> str:
    """Returns the Hacker News logo."""
    with open("../data/logo.png", "rb") as image_file:
        image_bytes = image_file.read()
        base64_string = base64.b64encode(image_bytes).decode('utf-8')
        return base64_string

Invoke either directly or using the MCP inspector

{
  "method": "resources/read",
  "params": {
    "uri": "hackernews://get_logo"
  }
}

Actual behavior
It returns

{
  "contents": [
    {
      "uri": "hackernews://get_logo",
      "mimeType": "text/plain,
      "blob": "aVZCT1J3MEtHZ29B [...]
}

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.

{
  "contents": [
    {
      "uri": "hackernews://get_logo",
      "mimeType": "application/octet-stream",
      "blob": "aVZCT1J3MEtHZ29

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.

@dsp-ant dsp-ant added bug Something isn't working help wanted Extra attention is needed labels Jan 24, 2025
@dsp-ant
Copy link
Member

dsp-ant commented Jan 24, 2025

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
@dsp-ant dsp-ant linked a pull request Jan 24, 2025 that will close this issue
4 tasks
@dsp-ant
Copy link
Member

dsp-ant commented Jan 24, 2025

#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
Labels
bug Something isn't working help wanted Extra attention is needed
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants