Openaire Tools

Configuration File: openaire_tools.json Tool Type: Local Tools Count: 2

This page contains all tools defined in the openaire_tools.json configuration file.

Available Tools

OpenAIRE_search_projects (Type: OpenAIRETool)

Search OpenAIRE for funded research projects / grants (EU Horizon 2020, Horizon Europe, ERC, and …

OpenAIRE_search_projects tool specification

Tool Information:

  • Name: OpenAIRE_search_projects

  • Type: OpenAIRETool

  • Description: Search OpenAIRE for funded research projects / grants (EU Horizon 2020, Horizon Europe, ERC, and many national funders such as NHMRC, NSF, Wellcome). Returns per-project: grant code, acronym, title, funder name/shortname, funding stream (e.g. ‘Project Grants’, ‘H2020-EU.1.1.’), start/end dates, funded amount, total cost, currency, and website. Use for: grant discovery, funder/portfolio analysis, mapping topics to funded projects. Searches across project titles, acronyms, and keywords.

Parameters:

  • query (string) (required) Keyword(s) to search project titles, acronyms, and metadata (e.g., ‘cancer’, ‘machine learning’, ‘graphene’).

  • max_results (integer) (optional) Maximum number of projects to return on this page. Default 10, maximum 100. (total_results reports the full match count across all pages.)

  • type (string) (optional) Must be ‘projects’ for this tool.

Example Usage:

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

OpenAIRE_search_publications (Type: OpenAIRETool)

Search OpenAIRE Explore for research products including publications, datasets, and software. Ope…

OpenAIRE_search_publications tool specification

Tool Information:

  • Name: OpenAIRE_search_publications

  • Type: OpenAIRETool

  • Description: Search OpenAIRE Explore for research products including publications, datasets, and software. OpenAIRE is the European open science platform that provides access to research outputs from EU-funded projects.

Parameters:

  • query (string) (required) Search query for OpenAIRE research products. Use keywords to search across titles, abstracts, and metadata.

  • max_results (integer) (required) Maximum number of results to return. Default is 10, maximum is 100.

  • type (string) (required) Type of research product to search: ‘publications’, ‘datasets’, or ‘software’. Default is ‘publications’.

Example Usage:

query = {
    "name": "OpenAIRE_search_publications",
    "arguments": {
        "query": "example_value",
        "max_results": 10,
        "type": "example_value"
    }
}
result = tu.run(query)