get_event

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

Fetch a single event by EONET id.

Parameters

NameTypeRequiredDescription
event_idstringyesEONET event id (e.g. “EONET_6210”)

Example call

Arguments

{
  "event_id": "EONET_6210"
}

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":"get_event","arguments":{"event_id":"EONET_6210"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_event', {
  "event_id": "EONET_6210"
});

Response shape

FieldTypeDescription
idstringEONET event id
titlestringEvent title
descriptionstringEvent description
linkstringEvent link
closedstring | nullClosed date or null if open
categoriesarrayEvent categories
sourcesarrayEvent sources
geometryarrayGeographic coordinates
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "EONET event id"
    },
    "title": {
      "type": "string",
      "description": "Event title"
    },
    "description": {
      "type": "string",
      "description": "Event description"
    },
    "link": {
      "type": "string",
      "description": "Event link"
    },
    "closed": {
      "type": [
        "string",
        "null"
      ],
      "description": "Closed date or null if open"
    },
    "categories": {
      "type": "array",
      "description": "Event categories",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Category id"
          },
          "title": {
            "type": "string",
            "description": "Category title"
          }
        }
      }
    },
    "sources": {
      "type": "array",
      "description": "Event sources",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Source id"
          },
          "url": {
            "type": "string",
            "description": "Source URL"
          }
        }
      }
    },
    "geometry": {
      "type": "array",
      "description": "Geographic coordinates",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Geometry type"
          },
          "coordinates": {
            "type": "array",
            "description": "GeoJSON coordinates"
          },
          "date": {
            "type": "string",
            "description": "Observation date"
          }
        }
      }
    }
  }
}

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