memory_link
Link global concepts to your project using Kratos-MCP by associating a concept ID with local tags. Enable AI coding tools to maintain traceable, searchable memory of code snippets and comments.
Instructions
Link a global concept to the current project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
concept_id | Yes | Global concept ID to link | |
local_tags | No | Additional local tags |
Input Schema (JSON Schema)
{
"properties": {
"concept_id": {
"description": "Global concept ID to link",
"type": "string"
},
"local_tags": {
"description": "Additional local tags",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"concept_id"
],
"type": "object"
}