MCP Server for ArangoDB
by ravenwits
arango_insert
Insert a document into a collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Collection name | |
document | Yes | Document 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"
}