search_pubmed
Retrieve relevant PubMed article abstracts by entering a search query and specifying the maximum number of results. Simplify biomedical research with structured, easy-to-read outputs.
Instructions
Search PubMed for articles matching the query.
Args:
query: The search term for PubMed.
max_results: Maximum number of articles to retrieve.
Returns:
A string containing the abstracts of found articles, separated by two newlines.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_results | No | ||
query | No | endocarditis |
Input Schema (JSON Schema)
{
"properties": {
"max_results": {
"default": 10,
"title": "Max Results",
"type": "integer"
},
"query": {
"default": "endocarditis",
"title": "Query",
"type": "string"
}
},
"title": "search_pubmedArguments",
"type": "object"
}