sfda_clinical_trials

Pack: sfda-drugs · Endpoint: https://gateway.pipeworx.io/sfda-drugs/mcp

Clinical trials registered with the SFDA and running in Saudi Arabia (sourced from www.sfda.gov.sa/en/drug_clinical_trials_list): study title, sponsor, status, study drug, phase, protocol number, and trial site (hospital). Filters are applied by the SFDA server.

Parameters

NameTypeRequiredDescription
titlestringnoFilter by study title substring.
drugstringnoFilter by study drug name substring, e.g. “VX 880”.
sponsorstringnoFilter by sponsor substring, e.g. “Pfizer”.
protocol_numberstringnoFilter by study protocol number.
phasestringnoFilter by trial phase, e.g. “3”.
statusstringnoFilter by status substring, e.g. “Ongoing”, “Terminated”, “Completed”.
sitestringnoFilter by trial site (hospital/city) substring, e.g. “Riyadh”.

Example call

Arguments

{
  "sponsor": "Pfizer"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('sfda_clinical_trials', {
  "sponsor": "Pfizer"
});

More examples

{
  "status": "Ongoing",
  "site": "Riyadh"
}

Connect

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

{
  "mcpServers": {
    "sfda-drugs": {
      "url": "https://gateway.pipeworx.io/sfda-drugs/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 7, 2026