recent_recalls

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

Most recent US consumer-product recalls (CPSC), newest first — the “what got recalled lately” feed across all product categories. Use for “latest product recalls”, “recent safety recalls this month”. For a specific product use search_recalls.

Parameters

NameTypeRequiredDescription
daysnumbernoLook back this many days (default 30, max 365).
limitnumbernoMax recalls to return (1-50, default 15).

Example call

Arguments

{
  "days": 30
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('recent_recalls', {
  "days": 30
});

More examples

{
  "days": 90,
  "limit": 25
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 2, 2026