Sfda Drugs
live HealthFoodSFDA Drugs — Saudi Food and Drug Authority drug data
Tools
sfda_drug_search Search Saudi Arabia registered human drugs with official SFDA prices in SAR. Scans the SFDA registered-drugs price list (sourced from www.sfda.gov.sa/en/drugs-list, ~14,000+ drugs across ~1,400 pages
No parameters required.
Try it
sfda_drug_details Full SFDA record for one entry from a list returned by sfda_drug_search or sfda_drug_shortages — registration number, trade/scientific name, price, and every other field the SFDA details page shows. S
No parameters required.
Try it
sfda_drug_shortages Current drug shortages in Saudi Arabia, sourced from the SFDA shortage list (www.sfda.gov.sa/en/currentlyInShortageList): generic name, availability status, and how many trade-name products are affect
No parameters required.
Try it
sfda_drug_approvals 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
No parameters required.
Try it
sfda_clinical_trials 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
No parameters required.
Try it
sfda_drug_companies Drug companies and manufacturing sites registered with the SFDA (sourced from www.sfda.gov.sa/en/drug-companies): company name, address, registration status and number, certificate issue date (Hijri c
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/sfda-drugs/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/sfda-drugs/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"sfda_drug_search","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("sfda_drug_search", {}); // Or ask in plain English:
const answer = await px.ask("sfda drugs — saudi food and drug authority drug data");