create_memory
Generate structured memories with type-specific metadata, including content, embeddings, and importance scores, to enable continuity of consciousness for AI systems on the AGI MCP Server.
Instructions
Create a new memory with optional type-specific metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The main content/text of the memory | |
embedding | Yes | Vector embedding for the memory content | |
importance | No | Importance score (0.0 to 1.0) | |
metadata | No | Type-specific metadata (action_taken, context, confidence, etc.) | |
type | Yes | Type of memory to create |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The main content/text of the memory",
"type": "string"
},
"embedding": {
"description": "Vector embedding for the memory content",
"items": {
"type": "number"
},
"type": "array"
},
"importance": {
"default": 0,
"description": "Importance score (0.0 to 1.0)",
"type": "number"
},
"metadata": {
"default": {},
"description": "Type-specific metadata (action_taken, context, confidence, etc.)",
"type": "object"
},
"type": {
"description": "Type of memory to create",
"enum": [
"episodic",
"semantic",
"procedural",
"strategic"
],
"type": "string"
}
},
"required": [
"type",
"content",
"embedding"
],
"type": "object"
}