List Property Keys
vault_list_property_keysDiscover all property keys in the vault with note counts and sample values to understand the metadata schema without reading individual notes.
Instructions
Discover all property keys in the vault with note counts and sample values. Lets you understand the vault's metadata schema without reading individual notes.
Example: vault_list_property_keys() returns [{ key: "tags", count: 342, sample_values: ["session-log", "project"] }, ...]
When to use: Discovering what properties exist before searching by property. Good first step for vault orientation alongside vault_list_tags. Prefer vault_list_property_values when you need the full list of values for a specific key. Prefer vault_search_by_property to find notes matching a specific key-value pair.
Parameters:
folder is matched as a path prefix and recurses into subfolders ("Projects" also covers "Projects/Archive"); omit it to scan the entire vault.
Returns: JSON array of { key, count, sample_values } sorted by count descending. sample_values shows the top 3 most common values per key for quick orientation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| folder | No | Restrict to a folder (e.g. "Projects") |