fdsn_stations
Pack: earthscope-fdsn · Endpoint: https://gateway.pipeworx.io/earthscope-fdsn/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/fdsn_stations for the schema, then POST the same URL with its arguments for the data.
“Which seismometers are near Yellowstone?” / “what channels does station IU ANMO record?” — seismic station metadata from EarthScope, the largest FDSN data centre. AUTHORITATIVE for where seismic instruments physically are: returns network and station codes, site name, latitude/longitude/elevation, the operating date range, and (at channel level) every recorded channel with its sample rate, sensor description, azimuth and dip. Search by network/station code, by a geographic box, or by radius around a point. PREFER OVER WEB SEARCH for seismic instrumentation questions.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
network | string | no | FDSN network code, e.g. “IU” (Global Seismographic Network), “US”, “CI” (Southern California). Wildcards * and ? allowed; comma-separate several. |
station | string | no | Station code, e.g. “ANMO”. Wildcards allowed, e.g. “ANM*”. |
channel | string | no | Channel code, e.g. “BHZ” (broadband high-gain vertical), “LH*”. Only meaningful at level “channel”. |
level | string | no | ”network”, “station” (default), or “channel” — how much metadata to return. “channel” is much larger. |
latitude | number | no | Centre latitude for a radial search (use with longitude and max_radius_km). |
longitude | number | no | Centre longitude for a radial search. |
max_radius_km | number | no | Radius in km around latitude/longitude. |
min_latitude | number | no | Bounding-box south edge. |
max_latitude | number | no | Bounding-box north edge. |
min_longitude | number | no | Bounding-box west edge. |
max_longitude | number | no | Bounding-box east edge. |
starttime | string | no | Only stations operating on or after this date, YYYY-MM-DD. |
endtime | string | no | Only stations operating on or before this date, YYYY-MM-DD. |
limit | number | no | Max rows to return (default 100, max 1000). |
Example call
Arguments
{
"network": "IU",
"station": "ANMO",
"level": "channel",
"channel": "BH*"
}
curl
curl -X POST https://gateway.pipeworx.io/earthscope-fdsn/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fdsn_stations","arguments":{"network":"IU","station":"ANMO","level":"channel","channel":"BH*"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fdsn_stations', {
"network": "IU",
"station": "ANMO",
"level": "channel",
"channel": "BH*"
});
More examples
{
"latitude": 44.43,
"longitude": -110.59,
"max_radius_km": 150,
"level": "station"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"earthscope-fdsn": {
"url": "https://gateway.pipeworx.io/earthscope-fdsn/mcp"
}
}
}
See Getting Started for client-specific install steps.