owned_games
Pack: steam · Endpoint: https://gateway.pipeworx.io/steam/mcp
List all games owned by a SteamID64; optionally include app name/icon and free-to-play games. Returns appid, playtime_forever (minutes), and per-game metadata.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
steamid | string | yes | |
include_appinfo | boolean | no | |
include_played_free | boolean | no |
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":"owned_games","arguments":{"steamid":"76561198000000000"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('owned_games', {
"steamid": "76561198000000000"
});
More examples
{
"steamid": "76561198000000000",
"include_appinfo": true,
"include_played_free": true
}
Response shape
| Field | Type | Description |
|---|---|---|
response | object |
Full JSON Schema
{
"type": "object",
"properties": {
"response": {
"type": "object",
"properties": {
"game_count": {
"type": "number",
"description": "Total games owned"
},
"games": {
"type": "array",
"items": {
"type": "object",
"properties": {
"appid": {
"type": "number",
"description": "Game app ID"
},
"name": {
"type": "string",
"description": "Game name"
},
"playtime_forever": {
"type": "number",
"description": "Total playtime minutes"
},
"playtime_windows_forever": {
"type": "number",
"description": "Windows playtime minutes"
},
"playtime_mac_forever": {
"type": "number",
"description": "Mac playtime minutes"
},
"playtime_linux_forever": {
"type": "number",
"description": "Linux playtime minutes"
},
"playtime_2weeks": {
"type": "number",
"description": "Last 2 weeks playtime minutes"
},
"img_icon_url": {
"type": "string",
"description": "Icon URL"
},
"img_logo_url": {
"type": "string",
"description": "Logo URL"
},
"has_community_visible_stats": {
"type": "boolean",
"description": "Has public stats"
}
}
}
}
}
}
}
}
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.