stores

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

List supported stores.

Example call

curl -X POST https://gateway.pipeworx.io/cheapshark/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"stores","arguments":{}}}'

Response shape

Full JSON Schema
{
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "storeID": {
        "type": "string",
        "description": "Store identifier"
      },
      "storeName": {
        "type": "string",
        "description": "Human-readable store name"
      },
      "isActive": {
        "type": "number",
        "description": "Whether store is active (1=yes, 0=no)"
      },
      "images": {
        "type": "object",
        "properties": {
          "logo": {
            "type": "string",
            "description": "Store logo URL"
          },
          "icon": {
            "type": "string",
            "description": "Store icon URL"
          }
        }
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "cheapshark": {
      "url": "https://gateway.pipeworx.io/cheapshark/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026