solar_wind

Pack: noaa-swpc · Endpoint: https://gateway.pipeworx.io/noaa-swpc/mcp

Recent solar wind (DSCOVR plasma + magnetometer).

Parameters

NameTypeRequiredDescription
windowstringno5-minute (default) | 1-day | 2-hour | 1-hour

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

FieldTypeDescription
windowstringThe requested time window (5-minute, 2-hour, 1-hour, or 1-day)
plasmaarraySolar wind plasma data from DSCOVR
magarraySolar wind magnetometer data from DSCOVR
Full JSON Schema
{
  "type": "object",
  "properties": {
    "window": {
      "type": "string",
      "description": "The requested time window (5-minute, 2-hour, 1-hour, or 1-day)"
    },
    "plasma": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "description": "Solar wind plasma data from DSCOVR"
    },
    "mag": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "description": "Solar wind magnetometer data from DSCOVR"
    }
  }
}

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.

Regenerated from source · build July 6, 2026