IaC Memory MCP Server

create_entity

Create a new entity in the knowledge graph with optional initial observations

Input Schema

NameRequiredDescriptionDefault
nameYesEntity name
observationNoInitial observation
typeYesEntity type

Input Schema (JSON Schema)

{ "description": "Create a new entity in the knowledge graph with optional initial observations", "properties": { "name": { "description": "Entity name", "type": "string" }, "observation": { "description": "Initial observation", "type": "string" }, "type": { "description": "Entity type", "type": "string" } }, "required": [ "name", "type" ], "type": "object" }