MCP Server for ArangoDB
by ravenwits
arango_remove
Remove a document from a collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Collection name | |
key | Yes | Document key |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Collection name",
"type": "string"
},
"key": {
"description": "Document key",
"type": "string"
}
},
"required": [
"collection",
"key"
],
"type": "object"
}