stores
Pack: cheapshark · Endpoint: https://gateway.pipeworx.io/cheapshark/mcp
List supported stores.
Example call
Arguments
{}
curl
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":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('stores', {});
Response shape
Always returns: items, count
| Field | Type | Description |
|---|---|---|
items | array | |
count | integer | Number of items returned. |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"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"
}
}
}
}
}
},
"count": {
"type": "integer",
"description": "Number of items returned."
}
},
"required": [
"items",
"count"
]
}
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.