player_level

Pack: steam · Endpoint: https://gateway.pipeworx.io/steam/mcp

Return the Steam Community level (integer) for a given SteamID64.

Parameters

NameTypeRequiredDescription
steamidstringyes

Example call

Arguments

{
  "steamid": "76561198000000000"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('player_level', {
  "steamid": "76561198000000000"
});

Response shape

FieldTypeDescription
responseobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "response": {
      "type": "object",
      "properties": {
        "player_level": {
          "type": "number",
          "description": "Steam account level"
        }
      }
    }
  }
}

Connect

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

{
  "mcpServers": {
    "steam": {
      "url": "https://gateway.pipeworx.io/steam/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026