player_summaries
Pack: steam · Endpoint: https://gateway.pipeworx.io/steam/mcp
Fetch public Steam profiles for up to 100 comma-separated SteamID64s in one request; returns persona name, avatar, country, and status for each.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
steamids | string | yes |
Example call
Arguments
{
"steamids": "76561198000000000,76561198000000001"
}
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_summaries","arguments":{"steamids":"76561198000000000,76561198000000001"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('player_summaries', {
"steamids": "76561198000000000,76561198000000001"
});
Response shape
| Field | Type | Description |
|---|---|---|
response | object |
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.