tnm_datasets
Pack: usgs-national-map · Endpoint: https://gateway.pipeworx.io/usgs-national-map/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/tnm_datasets for the schema, then POST the same URL with its arguments for the data.
List the USGS National Map dataset catalog — 3DEP elevation (DEM and lidar point cloud), US Topo and Historical Topo quadrangle maps, NHD hydrography, NLCD land cover, National Structures, Transportation and Boundaries — with each dataset’s refresh cycle, available formats and exact title. Call this FIRST: tnm_search_products needs the dataset title verbatim, and silently ignores one it does not recognise.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
filter | string | no | Case-insensitive substring to narrow the catalog, e.g. “elevation”, “lidar”, “hydrography” |
Example call
Arguments
{
"filter": "elevation"
}
curl
curl -X POST https://gateway.pipeworx.io/usgs-national-map/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tnm_datasets","arguments":{"filter":"elevation"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tnm_datasets', {
"filter": "elevation"
});
More examples
{}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"usgs-national-map": {
"url": "https://gateway.pipeworx.io/usgs-national-map/mcp"
}
}
}
See Getting Started for client-specific install steps.