list_stores

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

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

FieldTypeDescription
totalnumberNumber of active stores
storesarray
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.

Regenerated from source · build May 9, 2026