ArangoDB MCP Server

ArangoDB MCP servers enable AI models to interact with ArangoDB databases, providing capabilities for document operations, graph queries, and multi-model data management.

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

Overview

The MCP ArangoDB Server bridges AI and databases by letting language models (LLMs) work directly with ArangoDB. It's part of the Model Context Protocol (MCP) system, providing a safe and standard way to connect AI with multi-model data. 1

Key features include:

  • Work with document collections and graph data
  • Execute AQL (ArangoDB Query Language) queries
  • Manage documents, edges, and vertices
  • Handle complex data relationships
  • Support for key-value, document, and graph models

ravenwits

Tools

Sources

Footnotes

  1. https://github.com/ravenwits/mcp-server-arangodb