iss_number_generate

Pack: iss-number · Endpoint: https://gateway.pipeworx.io/iss-number/mcp

Generate a unique number based on the International Space Station’s current orbital location. Returns a computed integer derived from ISS coordinates. Use when you need a space-derived identifier or deterministic random seed.

Example call

Arguments

{}

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{}

Response shape

FieldTypeDescription
numberintegerComputed integer derived from ISS orbital coordinates
latitudenumberISS latitude coordinate
longitudenumberISS longitude coordinate
Full JSON Schema
{
  "type": "object",
  "properties": {
    "number": {
      "type": "integer",
      "description": "Computed integer derived from ISS orbital coordinates"
    },
    "latitude": {
      "type": "number",
      "description": "ISS latitude coordinate"
    },
    "longitude": {
      "type": "number",
      "description": "ISS longitude coordinate"
    }
  }
}

Connect

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

{
  "mcpServers": {
    "iss-number": {
      "url": "https://gateway.pipeworx.io/iss-number/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026