get_neo_feed

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

Get near-Earth objects passing Earth during a date range (e.g., “2024-01-01” to “2024-12-31”). Returns asteroid names, sizes, velocities, miss distances, and hazard status.

Parameters

NameTypeRequiredDescription
start_datestringyesStart date in YYYY-MM-DD format (e.g. “2025-01-01”).
end_datestringyesEnd date in YYYY-MM-DD format. Maximum 7-day range from start_date (e.g. “2025-01-07”).

Example call

Arguments

{
  "start_date": "2025-01-01",
  "end_date": "2025-01-07"
}

curl

curl -X POST https://gateway.pipeworx.io/meteors/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_neo_feed","arguments":{"start_date":"2025-01-01","end_date":"2025-01-07"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_neo_feed', {
  "start_date": "2025-01-01",
  "end_date": "2025-01-07"
});

More examples

{
  "start_date": "2024-12-01",
  "end_date": "2024-12-07"
}

Response shape

Always returns: element_count, near_earth_objects

FieldTypeDescription
element_countintegerTotal number of near-Earth objects in the date range
near_earth_objectsarrayArray of near-Earth objects with close approach data
Full JSON Schema
{
  "type": "object",
  "properties": {
    "element_count": {
      "type": "integer",
      "description": "Total number of near-Earth objects in the date range"
    },
    "near_earth_objects": {
      "type": "array",
      "description": "Array of near-Earth objects with close approach data",
      "items": {
        "type": "object",
        "properties": {
          "date": {
            "type": "string",
            "description": "Date of the approach event"
          },
          "id": {
            "type": "string",
            "description": "NASA JPL object ID"
          },
          "name": {
            "type": "string",
            "description": "Name/designation of the asteroid"
          },
          "potentially_hazardous": {
            "type": "boolean",
            "description": "Whether the object is potentially hazardous"
          },
          "diameter_km_min": {
            "type": "number",
            "description": "Minimum estimated diameter in kilometers"
          },
          "diameter_km_max": {
            "type": "number",
            "description": "Maximum estimated diameter in kilometers"
          },
          "close_approaches": {
            "type": "array",
            "description": "Array of close approach data",
            "items": {
              "type": "object",
              "properties": {
                "date": {
                  "type": "string",
                  "description": "Close approach date"
                },
                "velocity_km_h": {
                  "type": "number",
                  "description": "Relative velocity in km/h"
                },
                "miss_distance_au": {
                  "type": "number",
                  "description": "Miss distance in AU"
                },
                "miss_distance_km": {
                  "type": "number",
                  "description": "Miss distance in kilometers"
                },
                "orbiting_body": {
                  "type": "string",
                  "description": "Body being orbited (e.g., Earth)"
                }
              }
            }
          }
        }
      }
    }
  },
  "required": [
    "element_count",
    "near_earth_objects"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026