add_observations
Enhance entities with text observations and index them for full-text and semantic search on Memento, a local, offline MCP server.
Instructions
Add text observations to existing entities and index them for full-text and semantic search.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
observations | Yes | List of {entityName, contents} pairs. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"observations": {
"description": "List of {entityName, contents} pairs.",
"items": {
"additionalProperties": false,
"properties": {
"contents": {
"description": "List of text observations to add.",
"items": {
"type": "string"
},
"type": "array"
},
"entityName": {
"description": "Name of the entity to annotate.",
"type": "string"
}
},
"required": [
"entityName",
"contents"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"observations"
],
"type": "object"
}