list_sources

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

Return all official data sources (id, title, homepage URL) that EONET aggregates natural-event records from.

Example call

Arguments

{}

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":"list_sources","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_sources', {});

Response shape

Always returns: sources

FieldTypeDescription
sourcesarrayList of official EONET sources
Full JSON Schema
{
  "type": "object",
  "properties": {
    "sources": {
      "type": "array",
      "description": "List of official EONET sources",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Source id"
          },
          "title": {
            "type": "string",
            "description": "Source title"
          },
          "source": {
            "type": "string",
            "description": "Source name"
          },
          "link": {
            "type": "string",
            "description": "Source link"
          }
        }
      }
    }
  },
  "required": [
    "sources"
  ]
}

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