purple_book_recent_changes

Pack: fda-drug-competition · Endpoint: https://gateway.pipeworx.io/fda-drug-competition/mcp

Return the changes section of FDA’s latest monthly Purple Book report: N=newly approved, R=added in current release, U=updated. Updated or added does not necessarily mean newly licensed.

Parameters

NameTypeRequiredDescription
change_typestringno
querystringno
limitnumberno

Example call

Arguments

{
  "change_type": "N",
  "limit": 50
}

curl

curl -X POST https://gateway.pipeworx.io/fda-drug-competition/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"purple_book_recent_changes","arguments":{"change_type":"N","limit":50}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('purple_book_recent_changes', {
  "change_type": "N",
  "limit": 50
});

Connect

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

{
  "mcpServers": {
    "fda-drug-competition": {
      "url": "https://gateway.pipeworx.io/fda-drug-competition/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 29, 2026