geojson

Pack: nasa-eonet · Endpoint: https://gateway.pipeworx.io/nasa-eonet/mcp

Same as events but returns GeoJSON FeatureCollection (good for direct map rendering).

Parameters

NameTypeRequiredDescription
statusstringno
daysnumberno
categorystringno
bboxstringno
limitnumberno

Example call

Arguments

{
  "status": "open",
  "category": "volcanoes",
  "limit": 25
}

curl

curl -X POST https://gateway.pipeworx.io/nasa-eonet/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"geojson","arguments":{"status":"open","category":"volcanoes","limit":25}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('geojson', {
  "status": "open",
  "category": "volcanoes",
  "limit": 25
});

Response shape

Always returns: type, features

FieldTypeDescription
typestringGeoJSON type
featuresarrayGeoJSON features
Full JSON Schema
{
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "FeatureCollection"
      ],
      "description": "GeoJSON type"
    },
    "features": {
      "type": "array",
      "description": "GeoJSON features",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "enum": [
              "Feature"
            ],
            "description": "Feature type"
          },
          "geometry": {
            "type": "object",
            "properties": {
              "type": {
                "type": "string",
                "description": "Geometry type"
              },
              "coordinates": {
                "type": "array",
                "description": "Coordinates"
              }
            }
          },
          "properties": {
            "type": "object",
            "description": "Feature properties (event metadata)"
          }
        }
      }
    }
  },
  "required": [
    "type",
    "features"
  ]
}

Connect

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

{
  "mcpServers": {
    "nasa-eonet": {
      "url": "https://gateway.pipeworx.io/nasa-eonet/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026