search-drugs
Find drug information from FDA database by entering brand or generic names to access medication details and specifications.
Instructions
Search for drug information using FDA database
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Drug name to search for (brand name or generic name) | |
| limit | No | Number of results to return (max 50) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Number of results to return (max 50)",
"maximum": 50,
"minimum": 1,
"type": "integer"
},
"query": {
"description": "Drug name to search for (brand name or generic name)",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}