search_contexts
Find relevant information by performing semantic search across categorized contexts using keywords, tags, and filters to locate specific content.
Instructions
Perform semantic search across contexts to find relevant information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Filter results by category | |
limit | No | Maximum number of results to return | |
query | Yes | Search query to find semantically similar contexts | |
tags | No | Filter results by tags |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Filter results by category",
"enum": [
"personal",
"work",
"research",
"templates",
"prompts",
"other"
],
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of results to return",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search query to find semantically similar contexts",
"minLength": 1,
"type": "string"
},
"tags": {
"description": "Filter results by tags",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"query"
],
"type": "object"
}