A

ArangoDB

Query ArangoDB multi-model databases.

·No reviews yet
Repo
Share:

About

Auto-generated

ArangoDB is a Model Context Protocol server in the Data & Databases category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about ArangoDB.

What is the ArangoDB MCP server?
The ArangoDB MCP server enables querying ArangoDB multi-model databases. It facilitates interaction with ArangoDB instances for data retrieval and manipulation.
How can I install the ArangoDB MCP in a client like Claude Desktop?
Installation typically involves adding the ArangoDB MCP server's URL to your client's settings. Specific steps depend on the client's interface for adding external MCPs.
Does the ArangoDB MCP require an API key for authentication?
Yes, the ArangoDB MCP uses an API key for authentication. You will need to provide a valid API key to connect and interact with your ArangoDB instance.
What are the core capabilities of the ArangoDB MCP server?
The ArangoDB MCP server's primary capability is querying ArangoDB databases. This includes operations across its document, graph, and key-value data models.
Is there a cost associated with using the ArangoDB MCP server?
The ArangoDB MCP server itself is community-provided, implying no direct cost for the server software. However, the underlying ArangoDB database may incur costs depending on your deployment and licensing.
What is a prerequisite for using the ArangoDB MCP?
A key prerequisite for using the ArangoDB MCP is a running ArangoDB instance. You must have an accessible ArangoDB database to connect to with the MCP.

Install ArangoDB

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "arangodb": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-arangodb"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "arangodb": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-arangodb"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "arangodb": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-arangodb"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.