player_summary

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

Fetch public Steam profile for a single SteamID64: persona name, avatar, profile URL, country, last logoff, visibility status.

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_summary","arguments":{"steamid":"76561198000000000"}}}'

TypeScript (@pipeworx/sdk)

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

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

Response shape

FieldTypeDescription
responseobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "response": {
      "type": "object",
      "properties": {
        "players": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "steamid": {
                "type": "string",
                "description": "SteamID64"
              },
              "communityvisibilitystate": {
                "type": "number",
                "description": "Profile visibility"
              },
              "profilestate": {
                "type": "number",
                "description": "Has public profile"
              },
              "personaname": {
                "type": "string",
                "description": "Display name"
              },
              "profileurl": {
                "type": "string",
                "description": "Profile URL"
              },
              "avatar": {
                "type": "string",
                "description": "Avatar URL"
              },
              "avatarmedium": {
                "type": "string",
                "description": "Medium avatar URL"
              },
              "avatarfull": {
                "type": "string",
                "description": "Full avatar URL"
              },
              "personastate": {
                "type": "number",
                "description": "Online state"
              },
              "realname": {
                "type": "string",
                "description": "Real name if public"
              },
              "primaryclanid": {
                "type": "string",
                "description": "Primary clan ID"
              },
              "timecreated": {
                "type": "number",
                "description": "Account creation Unix timestamp"
              },
              "personastateflags": {
                "type": "number",
                "description": "Persona state flags"
              },
              "loccountrycode": {
                "type": "string",
                "description": "Country code"
              },
              "locstatecode": {
                "type": "string",
                "description": "State code"
              },
              "loccityid": {
                "type": "number",
                "description": "City ID"
              }
            }
          }
        }
      }
    }
  }
}

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