Skip to main content

mr notes meta-keys

List every distinct meta key observed across the entire Note corpus. Useful for discovering the vocabulary of an evolving meta schema. The response is a JSON array of objects each shaped {"key": "..."}. The command has no filter flags in the current CLI; pair it with client-side jq filtering if you only want a subset of keys.

Usage

mr notes meta-keys

Examples

List all meta keys

mr notes meta-keys

Filter client-side with jq

mr notes meta-keys --json | jq '.[] | select(.key | startswith("project_"))'

Flags

This command has no local flags.

Inherited global flags

FlagTypeDefaultDescription
--jsonboolfalseOutput raw JSON
--no-headerboolfalseOmit table headers
--pageint1Page number for list commands (default page size: 50)
--quietboolfalseOnly output IDs
--serverstringhttp://localhost:8181mahresources server URL (env: MAHRESOURCES_URL)

Output

Array of objects with key (string), one per distinct meta key observed across the entire Note corpus

Exit Codes

0 on success; 1 on any error

See Also