We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/genomoncology/biomcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
drug.md•1.53 KiB
# Drug
Use drug commands for medication lookup, target-oriented search, and safety context.
## Search drugs
Text query:
```bash
biomcp search drug -q "kinase inhibitor" --limit 5
```
Target-oriented search:
```bash
biomcp search drug --target BRAF --limit 5
```
Indication-oriented search:
```bash
biomcp search drug --indication melanoma --limit 5
```
## Get a drug record
```bash
biomcp get drug pembrolizumab
```
Default output provides concise identity and mechanism context.
## Request drug sections
FDA label section:
```bash
biomcp get drug vemurafenib label
```
Shortage section:
```bash
biomcp get drug carboplatin shortage
```
Targets and indications sections:
```bash
biomcp get drug pembrolizumab targets
biomcp get drug pembrolizumab indications
```
Interactions (drug-drug interactions):
```bash
biomcp get drug vemurafenib interactions
```
CIViC evidence and Drugs@FDA approvals:
```bash
biomcp get drug vemurafenib civic
biomcp get drug dabrafenib approvals
```
## Cross-entity helpers
Trial pivot:
```bash
biomcp drug trials pembrolizumab --limit 5
```
Safety pivot:
```bash
biomcp drug adverse-events pembrolizumab --limit 5
```
## JSON mode
```bash
biomcp --json get drug pembrolizumab
```
## Practical tips
- Start with base `get` before requesting heavy sections.
- Use target filters to narrow crowded drug classes.
- Pair drug lookups with trial filters for protocol matching workflows.
## Related guides
- [Adverse event](adverse-event.md)
- [Trial](trial.md)
- [Data sources](../reference/data-sources.md)