fetch-weather
Retrieve current weather data for a specific city using the MCP Weather Server's integration with Claude AI and Postgres database, supporting custom Model Context Protocol.
Instructions
Tool to fetch the weather of a city
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | Nombre de la ciudad |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"city": {
"description": "Nombre de la ciudad",
"type": "string"
}
},
"required": [
"city"
],
"type": "object"
}