products
Pack: dummyjson · Endpoint: https://gateway.pipeworx.io/dummyjson/mcp
Fetch a paginated list of fake products from DummyJSON. Supports limit, skip, and field selection via select. Returns product name, price, brand, category, thumbnail, and rating.
Example call
Arguments
{
"limit": 10,
"skip": 0
}
curl
curl -X POST https://gateway.pipeworx.io/dummyjson/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"products","arguments":{"limit":10,"skip":0}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('products', {
"limit": 10,
"skip": 0
});
Response shape
| Field | Type | Description |
|---|---|---|
products | array | List of products |
total | number | Total product count |
skip | number | Number of products skipped |
limit | number | Limit of products returned |
Full JSON Schema
{
"type": "object",
"properties": {
"products": {
"type": "array",
"description": "List of products",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Product ID"
},
"title": {
"type": "string",
"description": "Product title"
},
"description": {
"type": "string",
"description": "Product description"
},
"price": {
"type": "number",
"description": "Product price"
},
"discountPercentage": {
"type": "number",
"description": "Discount percentage"
},
"rating": {
"type": "number",
"description": "Product rating"
},
"stock": {
"type": "number",
"description": "Stock quantity"
},
"brand": {
"type": "string",
"description": "Brand name"
},
"category": {
"type": "string",
"description": "Product category"
},
"thumbnail": {
"type": "string",
"description": "Thumbnail URL"
},
"images": {
"type": "array",
"items": {
"type": "string"
},
"description": "Product images"
}
}
}
},
"total": {
"type": "number",
"description": "Total product count"
},
"skip": {
"type": "number",
"description": "Number of products skipped"
},
"limit": {
"type": "number",
"description": "Limit of products returned"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dummyjson": {
"url": "https://gateway.pipeworx.io/dummyjson/mcp"
}
}
}
See Getting Started for client-specific install steps.