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

[Samples] Add more detailed forecasts from WeatherTools #134

Open
wants to merge 9 commits into
base: main
Choose a base branch
from

Conversation

stvansolano
Copy link
Contributor

@stvansolano stvansolano commented Mar 28, 2025

Calls to #GetForecast fail for a basic query. Periods is not present so using /Forecast attribute instead

Forecast docs: https://www.weather.gov/documentation/services-web-api

How do I get the forecast?
Forecasts are created at each [NWS Weather Forecast Office (WFO)](https://www.weather.gov/srh/nwsoffices) on their own grid definition, at a resolution of about 2.5km x 2.5km. The API endpoint for the 12h forecast periods at a specific grid location is formatted as:
https://api.weather.gov/gridpoints/{office}/{gridX},{gridY}/forecast

For example: https://api.weather.gov/gridpoints/TOP/31,80/forecast

Motivation and Context

Fixes sample code for WeatherTools

How Has This Been Tested?

image

Breaking Changes

N/A

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)
  • Documentation update

Checklist

  • I have read the MCP Documentation
  • My code follows the repository's style guidelines
  • New and existing tests pass locally
  • I have added appropriate error handling
  • I have added or updated documentation as needed

Additional context

N/A

@stvansolano
Copy link
Contributor Author

+ @stephentoub @aaronpowell found this.

Copy link
Collaborator

@PederHP PederHP left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me.
nit: I prefer string.Join to Aggregate

@aaronpowell
Copy link
Contributor

@stephentoub
Copy link
Contributor

stephentoub commented Mar 31, 2025

@aaronpowell, how does this relate to the claim in the opening post that Calls to #GetForecast fail for a basic query. ?

I'm still not clear... is the sample broken as it currently is?

@aaronpowell
Copy link
Contributor

@stephentoub I think we have a different bug, I've just tried it out on main and it appears that the HttpClient is being read an input parameter to the tool call. This is what I see in the tools/list call:

    {
      "name": "GetForecast",
      "description": "Get weather forecast for a location.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "client": {
            "type": "object",
            "properties": {
              "defaultRequestHeaders": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "key": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "value": {
                      "type": [
                        "array",
                        "null"
                      ],
                      "items": {
                        "type": "string"
                      }
                    }
                  },
                  "additionalProperties": false,
                  "required": [
                    "key",
                    "value"
                  ]
                }
              },
              "defaultRequestVersion": {
                "$comment": "Represents a version string.",
                "type": "string"
              },
              "defaultVersionPolicy": {
                "type": "string",
                "enum": [
                  "RequestVersionOrLower",
                  "RequestVersionOrHigher",
                  "RequestVersionExact"
                ]
              },
              "baseAddress": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "timeout": {
                "$comment": "Represents a System.TimeSpan value.",
                "type": "string"
              },
              "maxResponseContentBufferSize": {
                "type": "integer"
              }
            },
            "additionalProperties": false,
            "required": [
              "defaultRequestHeaders",
              "defaultRequestVersion",
              "defaultVersionPolicy",
              "baseAddress",
              "timeout",
              "maxResponseContentBufferSize"
            ]
          },
          "latitude": {
            "description": "Latitude of the location.",
            "type": "number"
          },
          "longitude": {
            "description": "Longitude of the location.",
            "type": "number"
          }
        },
        "title": "GetForecast",
        "description": "Get weather forecast for a location.",
        "required": [
          "client",
          "latitude",
          "longitude"
        ]
      }
    }

@stephentoub
Copy link
Contributor

stephentoub commented Mar 31, 2025

I think we have a different bug, I've just tried it out on main and it appears that the HttpClient is being read an input parameter to the tool call.

That's because you didn't add HttpClient to DI, so McpServerTool can't satisfy that parameter from the IServiceProvider.

@stephentoub
Copy link
Contributor

Sorry, I take that back, you did add it here:

@stephentoub
Copy link
Contributor

It's a bug in an argument in WithTools. I'll fix it.

@stephentoub
Copy link
Contributor

#152

@stvansolano
Copy link
Contributor Author

Hey @aaronpowell sorry, still not clear to me. The code initially failed for me since the call can't get the attribute and then it fails.

Plus, Weather API point to use /forecast they provide in docs. Did I miss a recent change or something else added recently to sort it out?

@aaronpowell
Copy link
Contributor

As noted, there's a bug that causes the pipeline to think that HttpClient is a parameter not something injected via DI, so the problem becomes that it doesn't set the endpoint for HttpClient properly or it sometimes does but it doesn't set a User Agent, which then gets rejected by weather.gov.

Once #152 merges in, it should fix that problem.

@stephentoub
Copy link
Contributor

Thanks. In that case, @stvansolano, can this be closed?

@stvansolano
Copy link
Contributor Author

stvansolano commented Apr 3, 2025

Fixed conflicts. @aaronpowell @stephentoub should we merge this one on the API calls / fix sample or is already covered per other discussions/fixes/PRs? Sorry, got confused again 😆

modelcontextprotocol/docs#230
modelcontextprotocol/docs#228

@stvansolano stvansolano changed the title Fix WeatherTools sample to use /forecast [Samples] Add more detailed forecasts from WeatherTools Apr 4, 2025
@halter73 halter73 self-requested a review April 4, 2025 02:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants