tooluniverse.tools.PMC_search_papers module¶
PMC_search_papers
Search for full-text biomedical literature using PMC (PubMed Central) API. PMC is the free full-t…
- tooluniverse.tools.PMC_search_papers.PMC_search_papers(query, limit, date_from=None, date_to=None, article_type=None, *, stream_callback=None, use_cache=False, validate=True)[source]¶
Search for full-text biomedical literature using PMC (PubMed Central) API. PMC is the free full-t…
- Parameters:
query (
str
) – Search query for PMC papers. Use keywords separated by spaces to refine your …limit (
int
) – Maximum number of papers to return. This sets the maximum number of papers re…date_from (
str
) – Start date for publication date filter (YYYY/MM/DD format). Optional paramete…date_to (
str
) – End date for publication date filter (YYYY/MM/DD format). Optional parameter …article_type (
str
) – Article type filter (e.g., ‘research-article’, ‘review’, ‘case-report’). Opti…stream_callback (
Callable
, optional) – Callback for streaming output
- Return type:
list[Any]