app_list
Pack: steam · Endpoint: https://gateway.pipeworx.io/steam/mcp
Full app list (large).
Example call
Arguments
{}
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":"app_list","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('app_list', {});
Response shape
| Field | Type | Description |
|---|---|---|
applist | object |
Full JSON Schema
{
"type": "object",
"properties": {
"applist": {
"type": "object",
"properties": {
"apps": {
"type": "array",
"items": {
"type": "object",
"properties": {
"appid": {
"type": "number",
"description": "App ID"
},
"name": {
"type": "string",
"description": "App name"
}
}
}
}
}
}
}
}
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.