add_observations
Enhance knowledge graph entities by adding new observations to their data, enabling structured updates for improved reasoning and analysis in the MCP Think Tank server.
Instructions
Add new observations to existing entities in the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
observations | Yes | Array of entity observations to add |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"observations": {
"description": "Array of entity observations to add",
"items": {
"additionalProperties": false,
"properties": {
"contents": {
"description": "Observations to add to the entity",
"items": {
"type": "string"
},
"type": "array"
},
"entityName": {
"description": "Name of the entity to add observations to",
"minLength": 1,
"type": "string"
}
},
"required": [
"entityName",
"contents"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"observations"
],
"type": "object"
}