generated from mintlify/starter
-
Notifications
You must be signed in to change notification settings - Fork 236
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
c# server quickstart broken #230
Labels
bug
Something isn't working
Comments
9 tasks
Cleaned up worldwide-working minimal example: [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()}
"""));
} |
@DGuhr -- added your last update to the PR to use the Globalization. Only change is switching to |
9 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
On this page, when you use the C# SDK, there are 2 Bugs resulting in always getting a "404" response.
First bug: The part where we extract the forecastURL and request that json is missing in the example.
Second bug: The double langitude/longitude values are only working in geos where it's really e.g. "95.789" and not "95,789" (as, for example, here in germany).
This leads to bad requests.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Quickstart works.
Logs
No logs, but here's an example of a working
GetForecast
method:Additional context
Searched for some already open bug but couldn't find any. If there is one, and a fix already (repo just shows the python example), please close this. thanks.
The text was updated successfully, but these errors were encountered: