donki_solar_energetic_particles
Pack: nasa · Endpoint: https://gateway.pipeworx.io/nasa/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/donki_solar_energetic_particles for the schema, then POST the same URL with its arguments for the data.
Solar energetic particle (SEP) events from NASA DONKI — bursts of high-energy protons arriving at Earth after a flare or CME. These are the events behind radiation warnings for polar airline routes, astronaut EVA holds and satellite single-event upsets. Returns the event time, the detecting instruments and energy channels (e.g. “GOES-P: SEISS >10 MeV”), and the flare or CME DONKI linked as the source.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
start_date | string | no | Start date YYYY-MM-DD (optional; DONKI defaults to ~30 days ago). SEP events are rare — a year-wide window is often the right query. |
end_date | string | no | End date YYYY-MM-DD (optional; defaults to today). |
limit | number | no | Max events to return (default 50, max 200). |
_apiKey | string | no | NASA API key (optional, defaults to DEMO_KEY) |
Example call
Arguments
{
"start_date": "2026-01-01",
"end_date": "2026-09-17",
"limit": 3
}
curl
curl -X POST https://gateway.pipeworx.io/nasa/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"donki_solar_energetic_particles","arguments":{"start_date":"2026-01-01","end_date":"2026-09-17","limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('donki_solar_energetic_particles', {
"start_date": "2026-01-01",
"end_date": "2026-09-17",
"limit": 3
});
More examples
{
"start_date": "2026-01-01",
"end_date": "2026-03-01"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"nasa": {
"url": "https://gateway.pipeworx.io/nasa/mcp"
}
}
}
See Getting Started for client-specific install steps.