get_note
Retrieve a specific note by its identifier from the Flint Note vault. Specify optional fields or vault ID to customize the returned data for efficient note management.
Instructions
Retrieve a specific note by identifier
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | Optional array of field names to include in response. Supports dot notation for nested fields (e.g. "metadata.tags") and wildcard patterns (e.g. "metadata.*"). If not specified, all fields are returned. | |
identifier | Yes | Note identifier in format "type/filename" or full path | |
vault_id | No | Optional vault ID to operate on. If not provided, uses the current active vault. |
Input Schema (JSON Schema)
{
"properties": {
"fields": {
"description": "Optional array of field names to include in response. Supports dot notation for nested fields (e.g. \"metadata.tags\") and wildcard patterns (e.g. \"metadata.*\"). If not specified, all fields are returned.",
"items": {
"type": "string"
},
"type": "array"
},
"identifier": {
"description": "Note identifier in format \"type/filename\" or full path",
"type": "string"
},
"vault_id": {
"description": "Optional vault ID to operate on. If not provided, uses the current active vault.",
"type": "string"
}
},
"required": [
"identifier"
],
"type": "object"
}