MCP Server for ArangoDB

arango_insert

Insert a document into a collection

Input Schema

NameRequiredDescriptionDefault
collectionYesCollection name
documentYesDocument to insert

Input Schema (JSON Schema)

{ "properties": { "collection": { "description": "Collection name", "type": "string" }, "document": { "additionalProperties": true, "description": "Document to insert", "type": "object" } }, "required": [ "collection", "document" ], "type": "object" }