find_columns

Pack: macrostrat · Endpoint: https://gateway.pipeworx.io/macrostrat/mcp

List Macrostrat stratigraphic columns near a geographic point. Provide lat and lng (decimal degrees).

Parameters

NameTypeRequiredDescription
latnumberyesLatitude (decimal degrees).
lngnumberyesLongitude (decimal degrees).

Example call

Arguments

{
  "lat": 40.8071,
  "lng": -104.9901
}

curl

curl -X POST https://gateway.pipeworx.io/macrostrat/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"find_columns","arguments":{"lat":40.8071,"lng":-104.9901}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('find_columns', {
  "lat": 40.8071,
  "lng": -104.9901
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "macrostrat": {
      "url": "https://gateway.pipeworx.io/macrostrat/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 7, 2026