MCP Server for ArangoDB
by ravenwits
arango_update
Update a document in a collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Collection name | |
key | Yes | Document key | |
update | Yes | Update 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"
}