product_information

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

Fetch details for a branded grocery product by Spoonacular numeric id. Returns product title, UPC, brand, ingredients, nutrition facts, and image URL.

Parameters

NameTypeRequiredDescription
idnumberyes

Example call

Arguments

{
  "id": 521632
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('product_information', {
  "id": 521632
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Product detail information"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026