Europe Pmc Tools¶
Configuration File: europe_pmc_tools.json
Tool Type: Local
Tools Count: 3
This page contains all tools defined in the europe_pmc_tools.json configuration file.
Available Tools¶
EuropePMC_get_citations (Type: EuropePMCRESTTool)¶
Get citations for an article from Europe PMC. Citations are articles that cite the specified arti…
EuropePMC_get_citations tool specification
Tool Information:
Name:
EuropePMC_get_citationsType:
EuropePMCRESTToolDescription: Get citations for an article from Europe PMC. Citations are articles that cite the specified article. Requires a source (e.g., ‘MED’ for PubMed, ‘PMC’ for PMC) and article ID. Use EuropePMC_search_articles to find article IDs first.
Parameters:
source(string) (optional) Source database (e.g., ‘MED’ for PubMed, ‘PMC’ for PMC). Usually ‘MED’ for most articles.article_id(string) (required) Article ID from the source database (e.g., PMID for MED source)page_size(integer) (optional) Number of citations to retrieve (default: 25, max: 1000)page(integer) (optional) Page number for pagination (default: 1)
Example Usage:
query = {
"name": "EuropePMC_get_citations",
"arguments": {
"article_id": "example_value"
}
}
result = tu.run(query)
EuropePMC_get_references (Type: EuropePMCRESTTool)¶
Get references (bibliography) for an article from Europe PMC. References are articles cited by th…
EuropePMC_get_references tool specification
Tool Information:
Name:
EuropePMC_get_referencesType:
EuropePMCRESTToolDescription: Get references (bibliography) for an article from Europe PMC. References are articles cited by the specified article. Requires a source (e.g., ‘MED’ for PubMed, ‘PMC’ for PMC) and article ID. Use EuropePMC_search_articles to find article IDs first.
Parameters:
source(string) (optional) Source database (e.g., ‘MED’ for PubMed, ‘PMC’ for PMC). Usually ‘MED’ for most articles.article_id(string) (required) Article ID from the source database (e.g., PMID for MED source)page_size(integer) (optional) Number of references to retrieve (default: 25, max: 1000)page(integer) (optional) Page number for pagination (default: 1)
Example Usage:
query = {
"name": "EuropePMC_get_references",
"arguments": {
"article_id": "example_value"
}
}
result = tu.run(query)
EuropePMC_search_articles (Type: EuropePMCTool)¶
Search for articles on Europe PMC including abstracts. The tool queries the Europe PMC web servic…
EuropePMC_search_articles tool specification
Tool Information:
Name:
EuropePMC_search_articlesType:
EuropePMCToolDescription: Search for articles on Europe PMC including abstracts. The tool queries the Europe PMC web service using provided keywords and returns articles with details such as title, abstract, journal, publication year, and a URL to the full article.
Parameters:
query(string) (required) Search query for Europe PMC. Use keywords separated by spaces to refine your search.limit(integer) (optional) Number of articles to return. This sets the maximum number of articles retrieved from Europe PMC.
Example Usage:
query = {
"name": "EuropePMC_search_articles",
"arguments": {
"query": "example_value"
}
}
result = tu.run(query)