Hacktoberfest 2026: the issues maintainers tagged for October, open and beginner-friendly. Browse Hacktoberfest issues

How can a server using the SSE (Server-Sent Events) model over HTTP support additional content like images within the conversational context?

Open
#752 2 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
5/5
Estimated time
Over a week
Newbie friendliness
25/100
Issue type
Feature
Clarity
Needs clarification
Activity status
Stale
Tech stack
csharp
Domain
api, backend

Research direction

Start by reproducing the ConvertImageFormat tool call over the SSE and HTTP setup described in the issue, then inspect how the server handles image content in the conversational context. Done means the tool call succeeds and images can be supported alongside the conversation; no source files or tests are identified in the report.

Written by the indexing model from the issue text.

Description

enhancement needs confirmation
[McpServerTool(Name = "ConvertImageFormat")]
[Description("Converts image format")] 
public static async Task<string> ConvertImageFormat(
    [Description("Base64 encoded image data")] string imageData, 
    [Description("Target format: jpeg, png, bmp")] string targetFormat) 
{
    try
    {
        if (imageData.Contains(","))
        {
            imageData = imageData.Split(',')[1];
        }

        byte[] imageBytes = Convert.FromBase64String(imageData);

        // Here you can integrate System.Drawing or ImageSharp for format conversion
        // For simplicity, this is just simulating the conversion
        var convertedBytes = await SimulateImageConversion(imageBytes, targetFormat);
        var convertedBase64 = Convert.ToBase64String(convertedBytes);

        return $"Image format conversion completed:\n" + 
               $"- Original size: {imageBytes.Length} bytes\n" +
               $"- Converted size: {convertedBytes.Length} bytes\n" + 
               $"- Target format: {targetFormat}\n" + 
               $"- Converted base64 data: data:image/{targetFormat};base64,{convertedBase64}";
    }
    catch (Exception ex)
    {
        return $"Error: Failed to convert image format - {ex.Message}"; 
    }
}

This approach/way of writing does not successfully call it.

Dominant language
C#
Stars
4.5k
Forks
814
Avg merge
9d 19h
Merged PRs (30d)
4

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from modelcontextprotocol/csharp-sdk

All issues in modelcontextprotocol/csharp-sdk

Similar issues

More C# issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.