kp_index

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

NOAA planetary K-index — global geomagnetic activity 0–9, the standard aurora/storm indicator (Kp≥5 is a geomagnetic storm). Windows: now (single freshest estimated value) | 1-day (3-hourly observed, feed carries about a week) | 7-day (observed plus 3-day forecast; each row flags which) | 1-minute (1-minute estimated, last ~6 hours). SWPC retired its 30-day archive, so no month-long Kp history is available from this source.

Parameters

NameTypeRequiredDescription
windowstringnonow | 1-day (default) | 7-day | 1-minute

Example call

Arguments

{
  "window": "1-day"
}

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":"kp_index","arguments":{"window":"1-day"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('kp_index', {
  "window": "1-day"
});

More examples

{
  "window": "7-day"
}

Response shape

FieldTypeDescription
windowstring
cadencestring
kindstring
countnumber
coverageobject
measurementsarray
sourcestring
Full JSON Schema
{
  "type": "object",
  "properties": {
    "window": {
      "type": "string"
    },
    "cadence": {
      "type": "string"
    },
    "kind": {
      "type": "string"
    },
    "count": {
      "type": "number"
    },
    "coverage": {
      "type": "object",
      "properties": {
        "oldest": {
          "type": "string"
        },
        "newest": {
          "type": "string"
        }
      }
    },
    "measurements": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "time_tag": {
            "type": "string"
          },
          "Kp": {
            "type": "number"
          },
          "a_running": {
            "type": "number"
          },
          "station_count": {
            "type": "number"
          }
        }
      }
    },
    "source": {
      "type": "string"
    }
  },
  "description": "Planetary K-index data in various time windows"
}

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 August 21, 2026