kb_get_context
Retrieves structured personal and professional context data for AI systems, enabling LLMs to access relevant user information across categories like projects and preferences.
Instructions
Get AI-ready context string for LLM consumption
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categories | No | Categories to include (default: all) |
Input Schema (JSON Schema)
{
"properties": {
"categories": {
"default": [
"personal",
"professional",
"preferences",
"projects"
],
"description": "Categories to include (default: all)",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}