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
| Name | Type | Required | Description |
|---|---|---|---|
title | string | no | Filter by study title substring. |
drug | string | no | Filter by study drug name substring, e.g. “VX 880”. |
sponsor | string | no | Filter by sponsor substring, e.g. “Pfizer”. |
protocol_number | string | no | Filter by study protocol number. |
phase | string | no | Filter by trial phase, e.g. “3”. |
status | string | no | Filter by status substring, e.g. “Ongoing”, “Terminated”, “Completed”. |
site | string | no | Filter 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.