add_observations
Enhance your Memento MCP knowledge graph by adding new observations to existing entities, including content, strength, confidence, and metadata for precise data enrichment.
Instructions
Add new observations to existing entities in your Memento MCP knowledge graph memory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
confidence | No | Default confidence level (0.0 to 1.0) for all observations | |
metadata | No | Default metadata for all observations | |
observations | Yes | ||
strength | No | Default strength value (0.0 to 1.0) for all observations |
Input Schema (JSON Schema)
{
"properties": {
"confidence": {
"description": "Default confidence level (0.0 to 1.0) for all observations",
"type": "number"
},
"metadata": {
"additionalProperties": true,
"description": "Default metadata for all observations",
"type": "object"
},
"observations": {
"items": {
"properties": {
"confidence": {
"description": "Confidence level (0.0 to 1.0) for this specific observation",
"type": "number"
},
"contents": {
"description": "An array of observation contents to add",
"items": {
"type": "string"
},
"type": "array"
},
"entityName": {
"description": "The name of the entity to add the observations to",
"type": "string"
},
"metadata": {
"additionalProperties": true,
"description": "Metadata for this specific observation",
"type": "object"
},
"strength": {
"description": "Strength value (0.0 to 1.0) for this specific observation",
"type": "number"
}
},
"required": [
"entityName",
"contents"
],
"type": "object"
},
"type": "array"
},
"strength": {
"description": "Default strength value (0.0 to 1.0) for all observations",
"type": "number"
}
},
"required": [
"observations"
],
"type": "object"
}