Skip to content

How do I return file in current implementation? #129

Answered by stephentoub
vshapenko asked this question in Q&A
Discussion options

You must be logged in to vote

There are a variety of ways, but probably the easiest is to just return a Microsoft.Extensions.AI.DataContent, e.g.

[McpServerTool]
public static DataContent GetMyImage()
{
    byte[] bytes = File.ReadAllBytes("path/to/my/image.png");
    return new DataContent(bytes, "image/png");
}

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by eiriktsarpalis
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #127 on March 28, 2025 12:13.