app_details

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

Store page detail (Steam Store API).

Parameters

NameTypeRequiredDescription
appidsstringyes
ccstringno
lstringno

Example call

Arguments

{
  "appids": "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":"app_details","arguments":{"appids":"730"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('app_details', {
  "appids": "730"
});

More examples

{
  "appids": "570,440",
  "cc": "US",
  "l": "english"
}

Response shape

FieldTypeDescription
objectStore API returns appid keys with app detail objects
Full JSON Schema
{
  "type": "object",
  "properties": {
    "": {
      "type": "object",
      "description": "Store API returns appid keys with app detail objects"
    }
  }
}

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