MCP Server for ArangoDB

Active

A Model Context Protocol server for ArangoDB This is a TypeScript-based MCP server that provides database interaction capabilities through ArangoDB. It implements core database operations and allows seamless integration with ArangoDB through MCP tools. You can use it wih Claude app and also extension for VSCode that works with mcp like Cline!

Updated 8/4/2025
Key Features

What makes this MCP server special

Execute AQL queries
Insert documents into collections
Update existing documents
Remove documents from collections
Backup all collections to JSON files
List all collections in the database
Create a new collection in the database

Requirements

NPX
Server Information

Status

Active

Version

1.0.0

License

MIT

Author

https://github.com/ravenwits

Installation Guide
Get started with this MCP server in minutes

1. Install the Package

https://github.com/ravenwits/mcp-server-arangodb?tab=readme-ov-file#installation

2. Configuration

{
  "servers": {
    "arango-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "arango-server"
      ],
      "env": {
        "ARANGO_URL": "http://localhost:8529",
        "ARANGO_DB": "v20",
        "ARANGO_USERNAME": "app",
        "ARANGO_PASSWORD": "75Sab@MYa3Dj8Fc"
      }
    }
  }
}

3. Usage Example

List all collections in the database