concept_allowlist
Enable or disable specific project concepts in Kratos-MCP by adding or removing concept IDs. Use it to manage a curated list of concepts for enhanced codebase context and traceability.
Instructions
Manage project concept allowlist
Input Schema
Name | Required | Description | Default |
---|---|---|---|
add | No | Concept IDs to add | |
list | No | List current allowlist | |
remove | No | Concept IDs to remove |
Input Schema (JSON Schema)
{
"properties": {
"add": {
"description": "Concept IDs to add",
"items": {
"type": "string"
},
"type": "array"
},
"list": {
"description": "List current allowlist",
"type": "boolean"
},
"remove": {
"description": "Concept IDs to remove",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}