Openneuro Tools

Configuration File: openneuro_tools.json Tool Type: Local Tools Count: 4

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

Available Tools

OpenNeuro_get_dataset (Type: OpenNeuroTool)

Get detailed information about a specific neuroimaging dataset on OpenNeuro by its dataset ID (e….

OpenNeuro_get_dataset tool specification

Tool Information:

  • Name: OpenNeuro_get_dataset

  • Type: OpenNeuroTool

  • Description: Get detailed information about a specific neuroimaging dataset on OpenNeuro by its dataset ID (e.g., ‘ds000114’, ‘ds000224’). Returns full metadata including modalities, tasks, subject list, BIDS version, authors, DOI, README, and download statistics.

Parameters:

  • datasetId (string) (required) OpenNeuro dataset ID (e.g., ‘ds000114’, ‘ds000224’, ‘ds003097’)

Example Usage:

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

OpenNeuro_get_dataset_snapshots (Type: OpenNeuroTool)

Get all version snapshots of a specific dataset on OpenNeuro. Returns snapshot tags, creation dat…

OpenNeuro_get_dataset_snapshots tool specification

Tool Information:

  • Name: OpenNeuro_get_dataset_snapshots

  • Type: OpenNeuroTool

  • Description: Get all version snapshots of a specific dataset on OpenNeuro. Returns snapshot tags, creation dates, and summary information for all published versions of the dataset.

Parameters:

  • datasetId (string) (required) OpenNeuro dataset ID (e.g., ‘ds000114’)

Example Usage:

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

OpenNeuro_list_datasets (Type: OpenNeuroTool)

List publicly available neuroimaging datasets on OpenNeuro. OpenNeuro hosts 1000+ BIDS-formatted …

OpenNeuro_list_datasets tool specification

Tool Information:

  • Name: OpenNeuro_list_datasets

  • Type: OpenNeuroTool

  • Description: List publicly available neuroimaging datasets on OpenNeuro. OpenNeuro hosts 1000+ BIDS-formatted brain imaging datasets (fMRI, MRI, EEG, MEG, PET). Returns dataset metadata including modalities, subject counts, file counts, download statistics. Supports cursor-based pagination. Use after parameter for next page.

Parameters:

  • first ([‘integer’, ‘null’]) (optional) Number of datasets to return (default 10, max 25)

  • after ([‘string’, ‘null’]) (optional) Cursor for pagination - use endCursor from previous response

Example Usage:

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

OpenNeuro_search_by_modality (Type: OpenNeuroTool)

Search OpenNeuro neuroimaging datasets filtered by imaging modality. Supported modalities include…

OpenNeuro_search_by_modality tool specification

Tool Information:

  • Name: OpenNeuro_search_by_modality

  • Type: OpenNeuroTool

  • Description: Search OpenNeuro neuroimaging datasets filtered by imaging modality. Supported modalities include: ‘MRI’ (structural and functional MRI), ‘EEG’ (electroencephalography), ‘iEEG’ (intracranial EEG), ‘MEG’ (magnetoencephalography), ‘PET’ (positron emission tomography). Returns dataset IDs, names, creation dates, and total count of matching datasets. OpenNeuro hosts 1600+ BIDS-formatted brain imaging datasets.

Parameters:

  • modality (string) (required) Imaging modality to filter by. Options: ‘MRI’, ‘EEG’, ‘iEEG’, ‘MEG’, ‘PET’.

  • first ([‘integer’, ‘null’]) (optional) Number of datasets to return (default 10, max 25)

Example Usage:

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