
Wraps the Tomorrow.io Weather API (v4) through Pipeworx's MCP gateway, giving you access to weather data via simple tool calls or plain English questions using the ask_pipeworx interface. The server connects over streamable HTTP, so no local setup required. You can use it standalone for Tomorrow.io weather queries, or connect to the full Pipeworx gateway to get this plus 812 other data sources in one config block. The natural language query approach is handy when you want weather context without remembering specific API parameters. Reach for this when you need real-time or forecast weather data in your AI workflows without managing API keys and endpoints directly.
Tomorrow.io MCP — wraps the Tomorrow.io Weather API (api.tomorrow.io/v4)
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
| Tool | Description |
|---|---|
realtime | Get current/real-time weather conditions for a location — temperature, feels-like, humidity, wind, precipitation probability, cloud cover, UV index, and visibility. Location can be "lat,lon" coordinates or a city name. Example: realtime({ location: "new york", units: "imperial" }) or realtime({ location: "40.71,-74.01" }) |
forecast | Get a daily or hourly weather forecast for a location. Returns a list of forecast periods with conditions, temperatures, precipitation probability, and wind. Location can be "lat,lon" coordinates or a city name. Example: forecast({ location: "london", timestep: "1d", units: "metric" }) |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"tomorrow-io": {
"url": "https://gateway.pipeworx.io/tomorrow-io/mcp"
}
}
}
tools/list at https://gateway.pipeworx.io/tomorrow-io/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Tomorrow Io data" })
The gateway picks the right tool and fills the arguments automatically.
MIT
curl -X POST https://gateway.pipeworx.io/v1/tools/realtime \
-H 'Content-Type: application/json' \
-d '{"location":"new york","units":"imperial"}'
No account needed for the first calls. Inspect any tool: GET https://gateway.pipeworx.io/v1/tools/realtime. Find one: POST https://gateway.pipeworx.io/v1/tools/search_packs with {"query":"..."}.