tnm_products_at_point

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_products_at_point for the schema, then POST the same URL with its arguments for the data.

Find every USGS National Map product covering a single latitude/longitude — which elevation tile, lidar project, topo quadrangle or land-cover raster contains this spot — each with its direct download URL and publication date. Use this when you have a coordinate rather than an area.

Parameters

NameTypeRequiredDescription
latitudenumberyesLatitude in WGS84 decimal degrees
longitudenumberyesLongitude in WGS84 decimal degrees (negative in the US)
datasetsstringnoOptional exact dataset title from tnm_datasets to restrict the search
prod_formatsstringnoOptional product format filter, e.g. “GeoTIFF”
buffer_degreesnumbernoHalf-width of the search box around the point in decimal degrees (default 0.01, roughly 1 km)
limitnumbernoProducts to return, 1-${MAX_PER_PAGE} (default 20)

Example call

Arguments

{
  "latitude": 39.7392,
  "longitude": -104.9903,
  "limit": 5
}

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_products_at_point","arguments":{"latitude":39.7392,"longitude":-104.9903,"limit":5}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('tnm_products_at_point', {
  "latitude": 39.7392,
  "longitude": -104.9903,
  "limit": 5
});

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.

Regenerated from source · build September 18, 2026