search_europepmc_papers
Search Europe PMC for scientific papers using keywords; retrieve metadata like titles and authors. Optionally set max results and result type (lite or core).
Instructions
Search Europe PMC for papers without saving results to a file.
This function wraps the _search_europepmc_papers function and disables
file saving. It retrieves metadata about papers matching the given keywords.
Args: keywords (str): The search query string containing keywords to look for. max_results (int, optional): The maximum number of results to return. Defaults to 10. result_type (str, optional): The type of results to retrieve. Options include "lite" (basic metadata) and "core" (detailed metadata). Defaults to "lite".
Returns: list[dict]: A list of dictionaries, where each dictionary contains metadata about a paper matching the search query.
Example: >>> results = search_europepmc_papers("machine learning", max_results=5) >>> for paper in results: ... print(paper["title"])
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keywords | Yes | ||
| max_results | No | ||
| result_type | No | lite |