IAC Memory MCP Server

create_entity

Create a new entity with optional initial observation

Input Schema

NameRequiredDescriptionDefault
nameYesName of the entity
observationNoOptional initial observation
typeYesType of the entity

Input Schema (JSON Schema)

{ "properties": { "name": { "description": "Name of the entity", "type": "string" }, "observation": { "description": "Optional initial observation", "type": "string" }, "type": { "description": "Type of the entity", "type": "string" } }, "required": [ "name", "type" ], "type": "object" }