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.

コメント

「その他」の他のコンテンツ