MCP.so
登录

ArangoDB MCP Server

@lucas-deangelis

关于 ArangoDB MCP Server

暂无概览

基本信息

分类

其他

许可证

MIT

运行时

node

传输方式

stdio

发布者

lucas-deangelis

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "arangodb-account": {
      "command": "npx",
      "args": [
        "-y",
        "arango-mcp-server",
        "http://localhost:8529",
        "root",
        "root"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is ArangoDB MCP Server?

This server implements the Model Context Protocol (MCP) to allow AI assistants (e.g., Claude) to execute AQL queries on an ArangoDB graph database instance. It provides tools for read‑only and read‑write queries, listing available databases, and listing collections within a database.

How to use ArangoDB MCP Server?

Add a configuration entry to your claude_desktop_config.json using the npx command: npx arango-mcp-server followed by the ArangoDB server URL, username, and password (e.g., http://localhost:8529 root root). The server then responds to tool calls from the assistant.

Key features of ArangoDB MCP Server

  • Execute read-only AQL queries via readQuery
  • Execute any AQL query (read/write) via readWriteQuery
  • List all databases on the ArangoDB server with listDatabases
  • List all collections in a given database with listCollections

Use cases of ArangoDB MCP Server

  • An AI assistant querying business data stored in ArangoDB.
  • Automated database exploration, such as listing databases and collections.
  • Safe read‑only analysis of graph data without risk of modification.
  • Executing controlled read‑write operations under assistant guidance.

FAQ from ArangoDB MCP Server

How do I connect the ArangoDB MCP Server to Claude Desktop?

Add an entry to claude_desktop_config.json with the command npx arango-mcp-server and arguments for the ArangoDB server URL, username, and password.

What tools does the ArangoDB MCP Server provide?

It provides four tools: readQuery, readWriteQuery, listDatabases, and listCollections.

What parameters does the readQuery tool require?

It requires databaseName (string) and aql (string) – a read‑only AQL query.

Can I execute write queries?

Yes, the readWriteQuery tool accepts any AQL query and returns results, allowing both read and write operations.

How do I list all databases on the ArangoDB server?

Use the listDatabases tool, which takes no input and returns an array of database names.

评论

其他 分类下的更多 MCP 服务器