/
Server configuration and capabilities from the MCP manifest
Size: 2,261 bytes (566 tokens)
Tools Found: 5
Analysis ID: kpv7ib3q
This MCP server provides tools for generating random numbers, greeting users, and fetching weather information based on US zip codes.
Stars
Registry ID: 98619929-a570-46c1-8e35-4cde888731ee
Added to Registry: 9/21/2025
Last Updated: 9/22/2025
Last Seen: 9/22/2025
License: MIT License
Default Branch: main
Last Push: 9/19/2025
Open Issues: 0
Historical performance and growth metrics over time
{
"name": "MCP Weather Tools Server",
"tags": [
"MCP",
"Weather",
"Random Number",
"Hello"
],
"tools": [
{
"name": "GetRandomNumber",
"description": "Generates a random number between the specified minimum and maximum values.",
"input_schema": {
"type": "object",
"required": [
"min",
"max"
],
"properties": {
"max": {
"type": "integer",
"description": "Maximum value (exclusive)"
},
"min": {
"type": "integer",
"description": "Minimum value (inclusive)"
}
}
},
"output_schema": {
"type": "integer"
}
},
{
"name": "SayHelloName",
"description": "Returns a string with the name requested when someone asks to say hello world with their name.",
"input_schema": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "The name to say hello to"
}
}
},
"output_schema": {
"type": "string"
}
},
{
"name": "SayGoodbyeName",
"description": "Returns a string with the name requested when someone asks to say goodbye world with their name.",
"input_schema": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "The name to say goodbye to"
}
}
},
"output_schema": {
"type": "string"
}
},
{
"name": "GetWeatherByZipCode",
"description": "Gets current weather information for a specific US zip code.",
"input_schema": {
"type": "object",
"required": [
"zipCode"
],
"properties": {
"zipCode": {
"type": "string",
"description": "5-digit US zip code (e.g., 90210)"
}
}
},
"output_schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"annotations": {
"type": "object",
"properties": {
"audience": {
"type": "array",
"items": {
"type": "string"
}
},
"priority": {
"type": "number"
}
}
}
}
}
}
},
{
"name": "GetWeatherForecast",
"description": "Gets a simple weather forecast for the next few days for a specific US zip code.",
"input_schema": {
"type": "object",
"required": [
"zipCode",
"days"
],
"properties": {
"days": {
"type": "integer",
"description": "Number of days to forecast (1-3 days)"
},
"zipCode": {
"type": "string",
"description": "5-digit US zip code (e.g., 90210)"
}
}
},
"output_schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"annotations": {
"type": "object",
"properties": {
"audience": {
"type": "array",
"items": {
"type": "string"
}
},
"priority": {
"type": "number"
}
}
}
}
}
}
}
],
"version": "1.0.0",
"categories": [
"Weather",
"Utilities"
],
"description": "Sample MCP tools for demonstration purposes."
}Forks
Watchers
Contributors
Last Push: 9/19/2025
Open Issues: 0