list_stores
Pack: gamedeals · Endpoint: https://gateway.pipeworx.io/gamedeals/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/list_stores for the schema, then POST the same URL with its arguments for the data.
View all tracked game retailers (e.g., Steam, Epic Games, GOG). Returns store names and IDs for filtering deals by specific stores.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/gamedeals/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_stores","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_stores', {});
Response shape
Always returns: total, stores
| Field | Type | Description |
|---|---|---|
total | number | Number of active stores |
stores | array |
Full JSON Schema
{
"type": "object",
"properties": {
"total": {
"type": "number",
"description": "Number of active stores"
},
"stores": {
"type": "array",
"items": {
"type": "object",
"properties": {
"store_id": {
"type": "string",
"description": "Unique store identifier"
},
"name": {
"type": "string",
"description": "Store name (e.g., Steam, Epic Games)"
},
"icon": {
"type": "string",
"description": "Store icon image URL"
}
},
"required": [
"store_id",
"name",
"icon"
]
}
}
},
"required": [
"total",
"stores"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"gamedeals": {
"url": "https://gateway.pipeworx.io/gamedeals/mcp"
}
}
}
See Getting Started for client-specific install steps.