ArangoDB MCP Server
This is an implementation of the Model Context Protocol for ArangoDB.
Overview
To be filled.
Components
Resources
Tools
Query Tools
readQuery
- Execute read-only query on the database
- Input:
databaseName
(string): The database to queryaql
(string): The read-only AQL query to execute
- Returns: Query results as array of objects
readWriteQuery
- Execute query on the database
- Input:
databaseName
(string): The database to queryaql
(string): The AQL query to execute
- Returns: Query results as array of objects
listDatabases
- List all the databases on the ArangoDB server
- Returns: Array of the databases names
listCollections
- List all the collections in an ArangoDB database
- Input:
databaseName
(string): The name of the database
- Returns: Array of objects
{ "name": "<collectionName>" }
Usage
To connect to an arangodb instance running on localhost:2434, to the database "account", add the following to your claude_desktop_config.json
, assuming the path to this project is /home/yourcoolname/arango-mcp-server
:
Development
Clone the repository. Install everything. Setup the dev environment. Run the watcher. Edit index.ts.
Go to http://localhost:5173/ to see the inspector.
Todo
- Properly study the spec to see if the current implementation of resources actually make sense (I don't think it does)
- The resource templates make sense
- Change all the "arango" to "arangodb" (repo name included...)
- Add back the arangodb password
- Proper README
- Tools/resource/etc following the format of the official anthropic stuff
- Figure out notifications
- Health checks
- More tools?
- Access all the databases running on an arangodb instance
- Release on npm somehow so it can be used with
npx
resources/subscribe
andnotifications/resources/list_changed
andresources/unsubscribe
- Properly document tools in the readme
- Like on the SQLite MCP client
write_query
tool separated fromread_query
-> actually isreadWriteQuery
list_collections
(seelist_tables
)
- Client pool ie one client per database
- Dev environment
resources/read
with a template to read any document by database name, collection, id.- Add username and passwords as parameters of the command
This server cannot be installed
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
ArangoDB 데이터베이스와의 상호작용을 가능하게 하는 모델 컨텍스트 프로토콜의 구현으로, 사용자가 자연어를 통해 쿼리를 수행하고, 데이터베이스와 컬렉션을 나열할 수 있습니다.
Related Resources
Related MCP Servers
- AsecurityAlicenseAqualityA Model Context Protocol server that provides access to MongoDB databases. This server enables LLMs to inspect collection schemas and execute read-only queries.Last updated -8364263MIT License
- AsecurityAlicenseAqualityA TypeScript-based server to interact with ArangoDB using the Model Context Protocol, enabling database operations and integration with tools like Claude and VSCode extensions for streamlined data management.Last updated -137MIT License
- -securityAlicense-qualityA Model Context Protocol server that enables LLMs to interact directly with MongoDB databases, allowing users to query collections, inspect schemas, and manage data through natural language.Last updated -1711MIT License
- -securityAlicense-qualityA Model Context Protocol server that enables LLMs to interact directly with MongoDB databases, allowing users to query collections, inspect schemas, and manage data through natural language.Last updated -171MIT License