solar_wind
Pack: noaa-swpc · Endpoint: https://gateway.pipeworx.io/noaa-swpc/mcp
Real-time solar wind from the active spacecraft (DSCOVR/ACE): plasma (proton speed km/s, density p/cm³, temperature K) plus interplanetary magnetic field (bt, and bz in GSE/GSM — sustained southward bz_gsm is what drives geomagnetic storms). 1-minute cadence, last 24 hours available.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
window | string | no | How many trailing minutes of 1-minute samples to return: 5-minute (default, current conditions) | 1-hour | 2-hour | 1-day |
Example call
Arguments
{
"window": "5-minute"
}
curl
curl -X POST https://gateway.pipeworx.io/noaa-swpc/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"solar_wind","arguments":{"window":"5-minute"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('solar_wind', {
"window": "5-minute"
});
More examples
{
"window": "1-day"
}
Response shape
| Field | Type | Description |
|---|---|---|
window | string | The requested time window (5-minute, 2-hour, 1-hour, or 1-day) |
requested_samples | number | |
plasma | object | Solar wind plasma data from DSCOVR |
mag | object | Solar wind magnetometer data from DSCOVR |
spacecraft | string | |
source | string |
Full JSON Schema
{
"type": "object",
"properties": {
"window": {
"type": "string",
"description": "The requested time window (5-minute, 2-hour, 1-hour, or 1-day)"
},
"requested_samples": {
"type": "number"
},
"plasma": {
"type": "object",
"properties": {
"count": {
"type": "number"
},
"span": {
"type": "object",
"properties": {
"newest": {
"type": "string"
},
"oldest": {
"type": "string"
}
}
},
"measurements": {
"type": "array",
"items": {
"type": "object",
"properties": {
"time_tag": {
"type": "string"
},
"active": {
"type": "boolean"
},
"source": {
"type": "string"
},
"proton_speed": {
"type": "number"
},
"proton_temperature": {
"type": "number"
},
"proton_density": {
"type": "number"
},
"proton_vx_gse": {
"type": "number"
},
"proton_vy_gse": {
"type": "number"
},
"proton_vz_gse": {
"type": "number"
},
"proton_vx_gsm": {
"type": "number"
},
"proton_vy_gsm": {
"type": "number"
},
"proton_vz_gsm": {
"type": "number"
},
"proton_sample_size": {
"type": "number"
},
"alpha_speed": {
"type": "null"
},
"alpha_temperature": {
"type": "null"
},
"alpha_density": {
"type": "null"
},
"alpha_vx_gse": {
"type": "null"
},
"alpha_vy_gse": {
"type": "null"
},
"alpha_vz_gse": {
"type": "null"
},
"alpha_vx_gsm": {
"type": "null"
},
"alpha_vy_gsm": {
"type": "null"
},
"alpha_vz_gsm": {
"type": "null"
},
"alpha_sample_size": {
"type": "null"
},
"max_convergence_flag": {
"type": "number"
},
"max_data_flag": {
"type": "number"
},
"max_error_count_flag": {
"type": "number"
},
"max_processing_flag": {
"type": "number"
},
"max_range_flag": {
"type": "number"
},
"max_sample_count_flag": {
"type": "number"
},
"max_telemetry_flag": {
"type": "number"
},
"overall_quality": {
"type": "number"
}
}
}
}
},
"description": "Solar wind plasma data from DSCOVR"
},
"mag": {
"type": "object",
"properties": {
"count": {
"type": "number"
},
"span": {
"type": "object",
"properties": {
"newest": {
"type": "string"
},
"oldest": {
"type": "string"
}
}
},
"measurements": {
"type": "array",
"items": {
"type": "object",
"properties": {
"time_tag": {
"type": "string"
},
"active": {
"type": "boolean"
},
"source": {
"type": "string"
},
"range": {
"type": "null"
},
"scale": {
"type": "null"
},
"sensitivity": {
"type": "null"
},
"manual_mode": {
"type": "boolean"
},
"sample_size": {
"type": "number"
},
"bt": {
"type": "number"
},
"bx_gse": {
"type": "number"
},
"by_gse": {
"type": "number"
},
"bz_gse": {
"type": "number"
},
"theta_gse": {
"type": "number"
},
"phi_gse": {
"type": "number"
},
"bx_gsm": {
"type": "number"
},
"by_gsm": {
"type": "number"
},
"bz_gsm": {
"type": "number"
},
"theta_gsm": {
"type": "number"
},
"phi_gsm": {
"type": "number"
},
"max_telemetry_flag": {
"type": "number"
},
"max_data_flag": {
"type": "number"
},
"overall_quality": {
"type": "number"
}
}
}
}
},
"description": "Solar wind magnetometer data from DSCOVR"
},
"spacecraft": {
"type": "string"
},
"source": {
"type": "string"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"noaa-swpc": {
"url": "https://gateway.pipeworx.io/noaa-swpc/mcp"
}
}
}
See Getting Started for client-specific install steps.