obsidian_get_notes_info
Retrieve metadata for multiple notes including tags, dates, and file sizes to analyze collections without reading full content. Useful for understanding note relationships and organizing Zettelkasten workflows.
Instructions
Get metadata for multiple notes including tags, dates, and sizes.
Efficient way to get overview information about several Zettelkasten notes
without reading full content. Useful for analyzing note collections.
Args:
params (GetNotesInfoInput): Contains:
- filepaths (List[str]): Paths to files (max 50)
Returns:
str: JSON array with metadata for each file
Example:
Get info about all notes in a topic cluster to understand their relationships.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Input Schema (JSON Schema)
{
"properties": {
"params": {
"$ref": "#/$defs/GetNotesInfoInput"
}
},
"required": [
"params"
],
"type": "object"
}