product_search

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

Search fake DummyJSON products by keyword q. Returns matching products with name, price, brand, category, and rating. Supports limit and skip for pagination.

Parameters

NameTypeRequiredDescription
qstringyes
limitnumberno
skipnumberno

Example call

Arguments

{
  "q": "laptop"
}

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":"product_search","arguments":{"q":"laptop"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('product_search', {
  "q": "laptop"
});

More examples

{
  "q": "phone",
  "limit": 5,
  "skip": 0
}

Response shape

FieldTypeDescription
productsarraySearch results
totalnumberTotal results found
skipnumberNumber of results skipped
limitnumberLimit of results returned
Full JSON Schema
{
  "type": "object",
  "properties": {
    "products": {
      "type": "array",
      "description": "Search results",
      "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 results found"
    },
    "skip": {
      "type": "number",
      "description": "Number of results skipped"
    },
    "limit": {
      "type": "number",
      "description": "Limit of results 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.

Regenerated from source · build July 6, 2026