chaos_index_calculate

Pack: chaos-index · Endpoint: https://gateway.pipeworx.io/chaos-index/mcp

Calculate a chaos score that combines Bitcoin volatility, ISS orbital position, global temperatures, earthquake activity, and lunar phase. Returns a single chaos index (0-100) plus breakdown of each component’s contribution.

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/chaos-index/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"chaos_index_calculate","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('chaos_index_calculate', {});

Response shape

FieldTypeDescription
chaos_indexnumberOverall chaos score on a scale of 0-100
bitcoin_volatilitynumberBitcoin price volatility component contribution
iss_positionobject
global_temperaturenumberGlobal temperature component contribution
earthquake_magnitudenumberEarthquake activity component contribution
lunar_phasenumberLunar phase component contribution
Full JSON Schema
{
  "type": "object",
  "properties": {
    "chaos_index": {
      "type": "number",
      "description": "Overall chaos score on a scale of 0-100"
    },
    "bitcoin_volatility": {
      "type": "number",
      "description": "Bitcoin price volatility component contribution"
    },
    "iss_position": {
      "type": "object",
      "properties": {
        "latitude": {
          "type": "number",
          "description": "ISS orbital latitude"
        },
        "longitude": {
          "type": "number",
          "description": "ISS orbital longitude"
        },
        "contribution": {
          "type": "number",
          "description": "ISS position component contribution to chaos index"
        }
      }
    },
    "global_temperature": {
      "type": "number",
      "description": "Global temperature component contribution"
    },
    "earthquake_magnitude": {
      "type": "number",
      "description": "Earthquake activity component contribution"
    },
    "lunar_phase": {
      "type": "number",
      "description": "Lunar phase component contribution"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "chaos-index": {
      "url": "https://gateway.pipeworx.io/chaos-index/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026