player_stats
Pack: steam · Endpoint: https://gateway.pipeworx.io/steam/mcp
User stats for a game.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
steamid | string | yes | |
appid | number | yes |
Example call
Arguments
{
"steamid": "76561198000000000",
"appid": 730
}
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_stats","arguments":{"steamid":"76561198000000000","appid":730}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('player_stats', {
"steamid": "76561198000000000",
"appid": 730
});
Response shape
| Field | Type | Description |
|---|---|---|
playerstats | object |
Full JSON Schema
{
"type": "object",
"properties": {
"playerstats": {
"type": "object",
"properties": {
"steamID": {
"type": "string",
"description": "SteamID64"
},
"gameName": {
"type": "string",
"description": "Game name"
},
"stats": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Stat name"
},
"value": {
"type": "number",
"description": "Stat value"
}
}
}
},
"achievements": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Achievement name"
},
"achieved": {
"type": "number",
"description": "Whether unlocked"
}
}
}
},
"success": {
"type": "boolean",
"description": "Whether data was retrieved"
}
}
}
}
}
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.