update_entity
Modify an entity's properties and add new observations in the IaC Memory MCP Server, enabling updates to Infrastructure-as-Code components with version tracking and relationship mapping for Terraform and Ansible resources.
Instructions
Update an existing entity's properties and add new observations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Entity ID | |
name | No | New name | |
observation | No | New observation | |
type | No | New type |
Input Schema (JSON Schema)
{
"description": "Update an existing entity's properties and add new observations",
"properties": {
"id": {
"description": "Entity ID",
"type": "string"
},
"name": {
"description": "New name",
"type": "string"
},
"observation": {
"description": "New observation",
"type": "string"
},
"type": {
"description": "New type",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}