MCP Server for ArangoDB

arango_remove

Remove a document from a collection

Input Schema

NameRequiredDescriptionDefault
collectionYesCollection name
keyYesDocument key

Input Schema (JSON Schema)

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