sfda_drug_companies
Pack: sfda-drugs · Endpoint: https://gateway.pipeworx.io/sfda-drugs/mcp
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 calendar), drug type, production line, and country. Filters are applied by the SFDA server. Arabic enum values are translated to English (originals kept in *_ar fields).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | Filter by company name (English) substring, e.g. “BAYER”. |
registration_no | string | no | Filter by company registration number, e.g. “1978/2”. |
production_line | string | no | Filter by production line substring, e.g. “TABLET”. |
country | string | no | Filter by country name in Arabic as SFDA stores it (e.g. “فرنسا” for France). English values do not match. |
Example call
Arguments
{
"name": "BAYER"
}
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_companies","arguments":{"name":"BAYER"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sfda_drug_companies', {
"name": "BAYER"
});
More examples
{
"production_line": "TABLET"
}
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.