recently_played

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

List games played by a SteamID64 in the last two weeks, with playtime in the last 2 weeks and total playtime. Optional count caps results.

Parameters

NameTypeRequiredDescription
steamidstringyes
countnumberno

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "steamid": "76561198000000000",
  "count": 10
}

Response shape

FieldTypeDescription
responseobject
Full JSON Schema
{
  "type": "object",
  "properties": {
    "response": {
      "type": "object",
      "properties": {
        "total_count": {
          "type": "number",
          "description": "Total recently played games"
        },
        "games": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "appid": {
                "type": "number",
                "description": "Game app ID"
              },
              "name": {
                "type": "string",
                "description": "Game name"
              },
              "playtime_2weeks": {
                "type": "number",
                "description": "Last 2 weeks playtime minutes"
              },
              "playtime_forever": {
                "type": "number",
                "description": "Total playtime minutes"
              },
              "img_icon_url": {
                "type": "string",
                "description": "Icon URL"
              },
              "img_logo_url": {
                "type": "string",
                "description": "Logo URL"
              }
            }
          }
        }
      }
    }
  }
}

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