General Tools
skywatcher.wtf
Provides current weather conditions, forecasts, alerts, and air quality data for a given location.
ENDPOINT 1
https://skywatcher.wtf/mcp
MCP server metadata
- Name
- skywatcher
- Version
- 1.0.0
Skywatcher is a global weather service. Reach for its tools whenever the user asks about current conditions, forecast, weather alerts, air quality, pollen, aurora visibility, or space weather — for any place on Earth. Every tool takes a flexible `location` argument: - A city name: "Tokyo", "Oklahoma City, OK", "Reykjavík" - Coordinates: "lat,lon" like "35.68,139.69" - Empty string: use the requester's approximate IP location For the common "what's the weather in X?" call `get_weather` once — it geocodes and fetches in a single round trip. Use `get_forecast` or `get_hourly_forecast` for explicitly future-looking questions. If a name is ambiguous (e.g. "Springfield"), call `search_locations` first to disambiguate, then pass the chosen coordinates to other tools. `get_alerts` returns silence (empty array) outside the US and EU — that is correct, do not synthesize alerts from other sources. `get_air_quality` returns pollen as `null` for most US locations; this is not an error. Data is cached at the edge per coordinate; calling twice within the cache window returns identical responses. Temperatures are reported in °F, wind in mph, distances in metric. Sources: Open-Meteo (weather + air), NWS + Meteoalarm (alerts), NOAA SWPC (space weather). All data is public; no authentication required.
Known tools 7
get_hourly_forecastGet hour-by-hour weather forecast for a location, next 1 to 48 hours.
Inferred read-onlyget_space_weatherGet current space weather: Kp geomagnetic index, GOES X-ray flare class, solar wind speed, and aurora visibility for the given latitude.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.skywatcher]
url = "https://skywatcher.wtf/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"skywatcher": {
"type": "http",
"url": "https://skywatcher.wtf/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: skywatcher
Remote MCP URL: https://skywatcher.wtf/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"skywatcher": {
"url": "https://skywatcher.wtf/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"skywatcher": {
"type": "http",
"url": "https://skywatcher.wtf/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "skywatcher",
"transport": "streamable-http",
"url": "https://skywatcher.wtf/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for skywatcher.wtf was fetched 2026-08-23T15:37:34.009Z.
skywatcher.wtf is assessed as Neutral: No suspicious signals found, but no strong positive signal either
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.