pubmed_search
Search the PubMed database for medical literature by entering a query, filtering by date range, and specifying the number of results. Access relevant research articles for healthcare insights.
Instructions
Search for medical literature in PubMed database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date_range | No | Limit to articles published within years (e.g. '5' for last 5 years) | |
max_results | No | Maximum number of results to return | |
query | Yes | Search query for medical literature |
Input Schema (JSON Schema)
{
"properties": {
"date_range": {
"default": "",
"description": "Limit to articles published within years (e.g. '5' for last 5 years)",
"type": "string"
},
"max_results": {
"default": 5,
"description": "Maximum number of results to return",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search query for medical literature",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}