-
Notifications
You must be signed in to change notification settings - Fork 8
DOC-815 | MCP Server #820
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: DOC-761
Are you sure you want to change the base?
DOC-815 | MCP Server #820
Conversation
|
Deploy Preview Available Via |
| 2. Start ArangoDB (if you don't have an instance): | ||
|
|
||
| ```bash | ||
| docker run -d --name arangodb -p 8529:8529 -e ARANGO_ROOT_PASSWORD=test arangodb/arangodb:latest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should use image arangodb or arangodb/enterprise. We no longer publish arangodb/arangodb (CE) since 3.12.5
| @@ -0,0 +1,322 @@ | |||
| --- | |||
| title: ArangoDB Model Context Protocol (MCP) Server | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@diegomendez40 should we mark it as experimental?
| description: >- | ||
| A Model Context Protocol server for generating and executing AQL queries using AI assistants like Claude and Cursor IDE | ||
| --- | ||
| The ArangoDB MCP Server is a focused [Model Context Protocol](https://modelcontextprotocol.io/) (MCP) implementation that enables AI assistants to generate and execute AQL queries based on natural language questions. It includes lightweight schema discovery and manuals to ground queries in actual database structure. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| The ArangoDB MCP Server is a focused [Model Context Protocol](https://modelcontextprotocol.io/) (MCP) implementation that enables AI assistants to generate and execute AQL queries based on natural language questions. It includes lightweight schema discovery and manuals to ground queries in actual database structure. | |
| The ArangoDB MCP Server is a focused [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) | |
| implementation that enables AI assistants to generate and execute AQL queries | |
| based on natural language questions. It includes lightweight schema discovery | |
| and manuals to ground queries in actual database structure. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nerpaula For now we are planning to keep the MCP repository private, which means that users/customers do not need any local docker or poetry instructions.
Instead, the MCP docker images are uploaded to docker hub . The linked docker hub page also includes instructions on how to use the MCP.
- How are we planning to proceed with the documentation? We should decide whether we want to maintain the detailed docs on docker hub or in our official documentation - What do you prefer?
- Also, have all the listed examples in the "Practical Examples" section been validated to work with the first MCP version?
Description
TO DO: Add official Docker Hub image once it has been published.