kb_add_custom
Add custom knowledge entries to structured categories for persistent storage and retrieval in AI systems, enabling long-term memory across sessions with optional tagging.
Instructions
Add custom knowledge to any category
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Category name (e.g., "tools", "workflows", "contacts") | |
key | Yes | Knowledge key/identifier | |
tags | No | Optional tags for categorization | |
value | Yes | Knowledge value (can be string, object, array, etc.) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Category name (e.g., \"tools\", \"workflows\", \"contacts\")",
"type": "string"
},
"key": {
"description": "Knowledge key/identifier",
"type": "string"
},
"tags": {
"description": "Optional tags for categorization",
"items": {
"type": "string"
},
"type": "array"
},
"value": {
"description": "Knowledge value (can be string, object, array, etc.)"
}
},
"required": [
"category",
"key",
"value"
],
"type": "object"
}