Meteors

live Science

NASA fireball events, near-Earth asteroid close approaches, and NEO feed data

3 tools
0ms auth
free tier 50 calls/day

Tools

get_fireballs

Get recent bolide and fireball events recorded by US government sensors. Returns impact energy, radiated energy, velocity, altitude, and geographic location for each event.

Parameters
Name Type Description
limit opt number Maximum number of fireball events to return (default 10, max 100).
Try it
get_close_approaches

Get near-Earth asteroid close approach events within 0.05 AU of Earth. Returns object name, approach date, miss distance, relative velocity, and diameter estimates.

Parameters
Name Type Description
limit opt number Maximum number of close approach records to return (default 10, max 50).
Try it
get_neo_feed required: start_date, end_date

Get Near-Earth Objects (NEOs) passing by Earth for a given date range using the NASA NeoWs API. Returns asteroid names, sizes, velocities, miss distances, and hazard status.

Parameters
Name Type Description
start_date req string Start date in YYYY-MM-DD format (e.g. "2025-01-01").
end_date req string End date in YYYY-MM-DD format. Maximum 7-day range from start_date (e.g. "2025-01-07").
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/meteors/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/meteors/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_fireballs","arguments":{}}}'