MCP Server for ArangoDB

arango_update

Update a document in a collection

Input Schema

NameRequiredDescriptionDefault
collectionYesCollection name
keyYesDocument key
updateYesUpdate object

Input Schema (JSON Schema)

{ "properties": { "collection": { "description": "Collection name", "type": "string" }, "key": { "description": "Document key", "type": "string" }, "update": { "additionalProperties": true, "description": "Update object", "type": "object" } }, "required": [ "collection", "key", "update" ], "type": "object" }