pharma_drug_profile
Pack: pharma-intel · Endpoint: https://gateway.pipeworx.io/pharma-intel/mcp
Look up a drug’s FDA approval status, dosage forms, interactions, and active trials. Returns approval dates, formulations, known drug interactions, and ongoing trial details. E.g., search “ozempic” or “metformin”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
drug_name | string | yes | Drug name (brand or generic) |
Example call
Arguments
{
"drug_name": "ozempic"
}
curl
curl -X POST https://gateway.pipeworx.io/pharma-intel/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"pharma_drug_profile","arguments":{"drug_name":"ozempic"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('pharma_drug_profile', {
"drug_name": "ozempic"
});
More examples
{
"drug_name": "metformin"
}
Response shape
Always returns: analysis, drug_name, rxnorm, fda_approvals, fda_labels, adverse_events, active_clinical_trials
| Field | Type | Description |
|---|---|---|
analysis | string | Analysis type identifier |
drug_name | string | Drug name queried |
rxnorm | object | |
fda_approvals | object | null | FDA drug approvals data |
fda_labels | object | null | FDA drug labels |
adverse_events | object | null | FDA adverse events data |
active_clinical_trials | object | null | Active recruiting clinical trials for the drug |
Full JSON Schema
{
"type": "object",
"properties": {
"analysis": {
"type": "string",
"enum": [
"drug_profile"
],
"description": "Analysis type identifier"
},
"drug_name": {
"type": "string",
"description": "Drug name queried"
},
"rxnorm": {
"type": "object",
"properties": {
"search": {
"type": [
"object",
"null"
],
"description": "RxNorm search results or null"
},
"properties": {
"type": [
"object",
"null"
],
"description": "RxNorm drug properties or null"
},
"interactions": {
"type": [
"object",
"null"
],
"description": "RxNorm drug interactions or null"
}
}
},
"fda_approvals": {
"type": [
"object",
"null"
],
"description": "FDA drug approvals data"
},
"fda_labels": {
"type": [
"object",
"null"
],
"description": "FDA drug labels"
},
"adverse_events": {
"type": [
"object",
"null"
],
"description": "FDA adverse events data"
},
"active_clinical_trials": {
"type": [
"object",
"null"
],
"description": "Active recruiting clinical trials for the drug"
}
},
"required": [
"analysis",
"drug_name",
"rxnorm",
"fda_approvals",
"fda_labels",
"adverse_events",
"active_clinical_trials"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"pharma-intel": {
"url": "https://gateway.pipeworx.io/pharma-intel/mcp"
}
}
}
See Getting Started for client-specific install steps.