memory_search
Searches memory documents within an active project by query, filters results by tags, path, and expiration, and limits output to specified max results. Part of Kratos-MCP’s memory system for AI coding tools.
Instructions
Search memory documents in the active project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_expired | No | Include expired memories | |
k | No | Max results to return | |
q | Yes | Search query | |
require_path_match | No | Require path matching | |
tags | No | Filter by tags |
Input Schema (JSON Schema)
{
"properties": {
"include_expired": {
"description": "Include expired memories",
"type": "boolean"
},
"k": {
"description": "Max results to return",
"type": "integer"
},
"q": {
"description": "Search query",
"type": "string"
},
"require_path_match": {
"description": "Require path matching",
"type": "boolean"
},
"tags": {
"description": "Filter by tags",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"q"
],
"type": "object"
}