index-upsert
Create or update notes under a specific key, enabling indexing, tagging, and metadata management. Supports full-text search and knowledge graph generation for efficient note retrieval and concept relationships.
Instructions
Create or update a note under a key. Returns the note id.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
backup | No | ||
content | Yes | ||
id | No | Optional note id to update | |
key | Yes | ||
metadata | No | ||
tags | No |
Input Schema (JSON Schema)
{
"additionalProperties": true,
"properties": {
"backup": {
"properties": {
"dir": {
"type": "string"
},
"enabled": {
"type": "boolean"
}
},
"type": "object"
},
"content": {
"type": "string"
},
"id": {
"description": "Optional note id to update",
"type": "number"
},
"key": {
"type": "string"
},
"metadata": {
"type": "object"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"key",
"content"
],
"type": "object"
}