Pmc 工具

配置文件pmc_tools.json 工具类型:本地 工具数量:1

此页面包含在``pmc_tools.json``配置文件中定义的所有工具。

可用工具

**PMC_search_papers**(类型:PMCTool)

Search for full-text biomedical literature using the PMC (PubMed Central) API. PMC is the free fu…

PMC_search_papers 工具规格说明

工具信息:

  • 名称PMC_search_papers

  • 类型PMCTool

  • Description: Search for full-text biomedical literature using the PMC (PubMed Central) API. PMC is the free full-text archive of biomedical and life sciences journal literature at the U.S. National Institutes of Health’s National Library of Medicine. Uses limit (default 10); accepts retmax as an alias for limit.

参数:

  • ``query``(字符串)(必填)用于搜索PMC论文的查询条件。使用空格分隔的关键词以细化搜索结果。

  • limit (integer) (optional) Maximum number of papers to return. This sets the maximum number of papers retrieved from PMC.

  • retmax (integer) (optional) Alias for limit (NCBI eutils naming). If both retmax and limit are provided, limit is used.

  • ``date_from``(字符串)(可选)出版日期筛选的起始日期(格式:YYYY/MM/DD)。可选参数,用于限制搜索结果为从该日期起发表的论文。

  • ``date_to``(字符串)(可选)出版日期筛选的结束日期(格式:YYYY/MM/DD)。可选参数,用于限制搜索范围至该日期之前发表的论文。

  • ``article_type``(字符串)(可选)文章类型筛选(例如,’research-article’、’review’、’case-report’)。可选参数,用于限制搜索特定文章类型。

  • include_abstract (boolean) (optional) If true, attempts to enrich results with an abstract (best-effort) by fetching PubMed abstracts for items that have a PMID.

示例用法:

query = {
    "name": "PMC_search_papers",
    "arguments": {
        "query": "example_value"
    }
}
result = tu.run(query)