meteoswiss_collection
Pack: meteoswiss · Endpoint: https://gateway.pipeworx.io/meteoswiss/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/meteoswiss_collection for the schema, then POST the same URL with its arguments for the data.
Full detail for one data.geo.admin.ch collection: title, description, licence, providers, Swiss spatial extent and the asset keys its items carry. AUTHORITATIVE for what a MeteoSwiss dataset measures and at which resolutions — the SwissMetNet description, for instance, states the t/h/d/m/y resolution codes and the now/recent/historical file split that the asset filenames use. Get valid ids from meteoswiss_collections.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
collection_id | string | yes | Collection id exactly as listed, e.g. “ch.meteoschweiz.ogd-smn” (automatic weather stations), “ch.meteoschweiz.ogd-radar-precip”, “ch.swisstopo.swissalti3d”. |
Example call
Arguments
{
"collection_id": "ch.meteoschweiz.ogd-smn"
}
curl
curl -X POST https://gateway.pipeworx.io/meteoswiss/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"meteoswiss_collection","arguments":{"collection_id":"ch.meteoschweiz.ogd-smn"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('meteoswiss_collection', {
"collection_id": "ch.meteoschweiz.ogd-smn"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"meteoswiss": {
"url": "https://gateway.pipeworx.io/meteoswiss/mcp"
}
}
}
See Getting Started for client-specific install steps.