Skip to main content

mne_show_mna

Overview

mne_show_mna inspects MNA (.mna) and MNX (.mnx) project files. It displays the project structure including subjects, sessions, recordings, referenced/embedded files, pipeline nodes, and metadata. It can also output the project as formatted JSON.

Usage

mne_show_mna [options] <file>

Options

OptionDescription
<file>Path to a .mna or .mnx project file (positional argument)
-V, --verboseShow extended details (SHA-256, format, size)
--jsonOutput the project as formatted JSON to stdout
--helpPrint help
--versionPrint version

Example

# Display project summary
mne_show_mna analysis.mna

# Show verbose details including file sizes and checksums
mne_show_mna --verbose analysis.mnx

# Dump as JSON for scripting
mne_show_mna --json analysis.mna > project.json

See Also