ema_psusa

Pack: ema-medicines · Endpoint: https://gateway.pipeworx.io/ema-medicines/mcp

European Medicines Agency Periodic Safety Update Report Single Assessments (PSUSA) — the EU-wide pharmacovigilance procedure where all products containing a given active substance are jointly reassessed for safety on a fixed schedule. Returns the active substance, related medicine names, procedure number, regulatory outcome (e.g. “Maintenance”, “Variation”, “Suspension”) and dates. The closest structured EU signal to a pharmacovigilance safety review. Answers “when was the last PSUSA outcome for X”, “has ibuprofen had a periodic safety update review”, “recent EU pharmacovigilance outcomes”.

Parameters

NameTypeRequiredDescription
querystringnoFree text: active substance or related medicine name.
outcomestringnoFilter on regulatory outcome, e.g. “Maintenance”, “Variation”, “Suspension”, “Withdrawal”. Substring match.
sincestringnoEarliest first-published date. YYYY-MM-DD, YYYY-MM or YYYY.
limitnumbernoMax records, default 50, max 200.

Example call

Arguments

{
  "query": "bezafibrate"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ema_psusa', {
  "query": "bezafibrate"
});

More examples

{
  "outcome": "Maintenance",
  "since": "2026-08",
  "limit": 5
}

Connect

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

{
  "mcpServers": {
    "ema-medicines": {
      "url": "https://gateway.pipeworx.io/ema-medicines/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 13, 2026