player_achievements

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

Achievements for a game.

Parameters

NameTypeRequiredDescription
steamidstringyes
appidnumberyes
lstringno

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "steamid": "76561198000000000",
  "appid": 570,
  "l": "english"
}

Response shape

FieldTypeDescription
playerstatsobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "playerstats": {
      "type": "object",
      "properties": {
        "steamID": {
          "type": "string",
          "description": "SteamID64"
        },
        "gameName": {
          "type": "string",
          "description": "Game name"
        },
        "achievements": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "apiname": {
                "type": "string",
                "description": "Achievement API name"
              },
              "achieved": {
                "type": "number",
                "description": "Whether unlocked (0 or 1)"
              },
              "unlocktime": {
                "type": "number",
                "description": "Unix timestamp when unlocked"
              },
              "name": {
                "type": "string",
                "description": "Achievement display name"
              },
              "description": {
                "type": "string",
                "description": "Achievement description"
              },
              "icon": {
                "type": "string",
                "description": "Icon URL"
              },
              "icongray": {
                "type": "string",
                "description": "Locked icon URL"
              }
            }
          }
        },
        "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.

Regenerated from source · build July 7, 2026