Nci Evs Tools#

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

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

Available Tools#

NCIEVS_get_concept (Type: NCIEVSTool)#

Retrieve one concept’s full detail (definition, synonyms, properties) from an NCI EVS terminology…

NCIEVS_get_concept tool specification

Tool Information:

  • Name: NCIEVS_get_concept

  • Type: NCIEVSTool

  • Description: Retrieve one concept’s full detail (definition, synonyms, properties) from an NCI EVS terminology other than NCIt, by its code. Example: terminology=’ctcae5’, code=’C143481’ returns ‘Febrile neutropenia’ with its clinical definition and MedDRA cross-reference code. Use NCIEVS_search_terminology to find a code.

Parameters:

  • terminology (string) (required) NCI EVS terminology code, e.g. ‘ctcae5’, ‘radlex’.

  • code (string) (required) Concept code within that terminology, e.g. ‘C143481’ (CTCAE5) or ‘RID4650’ (RadLex).

Example Usage:

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

NCIEVS_search_terminology (Type: NCIEVSTool)#

Keyword-search an NCI EVS clinical/biomedical terminology other than NCIt (use NCIThesaurus_searc…

NCIEVS_search_terminology tool specification

Tool Information:

  • Name: NCIEVS_search_terminology

  • Type: NCIEVSTool

  • Description: Keyword-search an NCI EVS clinical/biomedical terminology other than NCIt (use NCIThesaurus_search for NCIt) or ICD-10-CM (use ICD10Tool): ‘ctcae5’/’ctcae6’ (adverse event grading, the clinical-trial safety standard), ‘icd9cm’ (US legacy diagnosis codes), ‘radlex’ (radiology), ‘ndfrt’/’medrt’ (drug reference terminology), ‘canmed’. Example: terminology=’ctcae5’, term=’neutropenia’ returns graded adverse event terms (Grade 3/4/5 Febrile neutropenia). MedDRA is licensed and not queryable here. Returns each concept’s code for use with NCIEVS_get_concept.

Parameters:

  • terminology (string) (required) NCI EVS terminology code, e.g. ‘ctcae5’, ‘icd9cm’, ‘radlex’, ‘ndfrt’, ‘medrt’, ‘canmed’.

  • term (string) (required) Free-text search term, e.g. ‘neutropenia’, ‘fracture’.

  • limit ([‘integer’, ‘null’]) (optional) Max concepts to return, 1-100. Default 20.

Example Usage:

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