MCP Server for ArangoDB

arango_create_collection

Create a new collection in the database

Input Schema

NameRequiredDescriptionDefault
nameYesName of the collection to create
typeNoType of collection to create
waitForSyncNoIf true, wait for data to be synchronized to disk before returning

Input Schema (JSON Schema)

{ "properties": { "name": { "description": "Name of the collection to create", "type": "string" }, "type": { "default": 2, "description": "Type of collection to create", "type": { "2": "DOCUMENT_COLLECTION", "3": "EDGE_COLLECTION", "DOCUMENT_COLLECTION": 2, "EDGE_COLLECTION": 3 } }, "waitForSync": { "default": false, "description": "If true, wait for data to be synchronized to disk before returning", "type": "boolean" } }, "required": [ "name" ], "type": "object" }