sfda_drug_approvals
Pack: sfda-drugs · Endpoint: https://gateway.pipeworx.io/sfda-drugs/mcp
Recent SFDA drug approvals in Saudi Arabia (sourced from www.sfda.gov.sa/en/new-sfda-drug-approvals): request type, drug type, trade name, scientific name, strength, dosage form, approval date. Newest first. Note: the SFDA leaves approval_date blank on the newest rows for a while — an empty date means SFDA has not published it yet, not a missing drug.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
scientific_name | string | no | Filter by scientific (generic) name substring, e.g. “semaglutide”. |
trade_name | string | no | Filter by trade name substring. |
Example call
Arguments
{
"scientific_name": "semaglutide"
}
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_drug_approvals","arguments":{"scientific_name":"semaglutide"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sfda_drug_approvals', {
"scientific_name": "semaglutide"
});
More examples
{
"page": 1
}
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.