-
Notifications
You must be signed in to change notification settings - Fork 232
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
Quickstart (C#) -- GetForecast needs to make two client api calls #228
base: main
Are you sure you want to change the base?
Conversation
hey 👋 I just opened #230 and then saw this PR, which fixes one of the two problems mentioned there. It'd be nice if you could also fix the other one with the langitude/longitude formatting. see my example code in the ticket (and e.g. here for ref) code: [McpServerTool,
Description(@"
Get weather forecast for a location.
Args:
Latitude: Latitude of the location.
Longitude: Longitude of the location.
")]
public static async Task<string> GetForecast(
HttpClient client,
[Description("Latitude of the location.")] double latitude,
[Description("Longitude of the location.")] double longitude)
{
var jsonElement = await client.GetFromJsonAsync<JsonElement>($"/points/{latitude.ToString(CultureInfo.InvariantCulture)},{longitude.ToString(CultureInfo.InvariantCulture)}");
var forecastUrl = jsonElement.GetProperty("properties").GetProperty("forecast").GetString();
jsonElement = await client.GetFromJsonAsync<JsonElement>(forecastUrl);
var periods = jsonElement.GetProperty("properties").GetProperty("periods").EnumerateArray();
return string.Join("\n---\n", periods.Select(period => $"""
{period.GetProperty("name").GetString()}
Temperature: {period.GetProperty("temperature").GetInt32()}°F
Wind: {period.GetProperty("windSpeed").GetString()} {period.GetProperty("windDirection").GetString()}
Forecast: {period.GetProperty("detailedForecast").GetString()}
"""));
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Worked for me, so LGTM 👌 hopefully someone from the team will approve quickly, it's a quite bad first impression honestly.
Solves #230
Hi @aaronpowell and @dsp-ant. Just wanted to say that you have a couple of .Net enthusiasts here. Both @DGuhr (thanks for the collaboration) and I have tested updates to Aaron's PR #221. Thanks! |
Yep, my bad. Seems I'm quite bad at reading Python code. We have modelcontextprotocol/csharp-sdk#134 tracking it in the main repo, so once that's merged, we should align the docs. |
Args: | ||
State: Two-letter US state code (e.g. CA, NY) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You shouldn't need to add args info here, it should be inferred from the parameters (and their description). If that info isn't getting surfaced correctly, we should look at improving the SDK rather than requiring a duplication of info.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without the additional description, the model was attempting to pass the full state name to the weather api resulting in a 404. Ex. "Give me the current alerts in Kansas"
The addition replicates what the python sample did.. and it worked.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree with @aaronpowell, this additional info can be added in the description of the state
parameter. For example:
public static async Task<string> GetAlerts(HttpClient client, [Description("The US state to get alerts for. Use two-letter US state code (e.g. CA, NY).")] string state)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't disagree that this is important information, more that it shouldn't be in the description of the tool, but as @puran1218 points out, it should be on the description of the argument.
With Python, the reason it is that was is because they don't have argument annotations, in fact they don't use annotations in the same way we use attributes (providing the description), instead they use the doc comments, which they regex at runtime to extract the description/args info from.
Testing dotnet quickstart from changes merged in PR #221
-- C# version was missing getting the forecast URL for first request. Needed additional client request.
-- Added a little more description detail on functions. Now llm can infer passing two-letter state abbreviations.
-- Minor cleanup (whitespace) when I saved file.
-- Added Globalization into PR per #230
Motivation and Context
Docs source code updates for C#
How Has This Been Tested?
Test MCP functions with LLM
Breaking Changes
No
Types of changes
Checklist
Additional context