status

Pack: riot-games · Endpoint: https://gateway.pipeworx.io/riot-games/mcp

Platform status.

Parameters

NameTypeRequiredDescription
platformstringyes

Example call

Arguments

{
  "platform": "na1"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('status', {
  "platform": "na1"
});

Response shape

FieldTypeDescription
idstringPlatform ID
namestringPlatform name
localesarraySupported locales
maintenancesarrayCurrent maintenances
incidentsarrayCurrent incidents
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Platform ID"
    },
    "name": {
      "type": "string",
      "description": "Platform name"
    },
    "locales": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Supported locales"
    },
    "maintenances": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Current maintenances"
    },
    "incidents": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Current incidents"
    }
  }
}

Connect

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

{
  "mcpServers": {
    "riot-games": {
      "url": "https://gateway.pipeworx.io/riot-games/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026