concept_search
Search the global concept store in Kratos-MCP to retrieve relevant code snippets, comments, or runtime traces using query keywords, result limits, and optional concept filters.
Instructions
Search global concept store
Input Schema
Name | Required | Description | Default |
---|---|---|---|
allowlist | No | Concept ID allowlist | |
k | No | Max results | |
q | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"allowlist": {
"description": "Concept ID allowlist",
"items": {
"type": "string"
},
"type": "array"
},
"k": {
"description": "Max results",
"type": "integer"
},
"q": {
"description": "Search query",
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
}