mcp-arango-mind
Turns ArangoDB into a schema-driven MCP server for agents, enabling search-describe-exec workflows for database, graph, and knowledge operations without oversizing the tool list.
README
mcp-arango-mind
An ArangoDB MCP server for agents that need more than a database wrapper.
mcp-arango-mind turns ArangoDB into a schema-driven tool surface: discover the operation you need, inspect the contract, execute it with structured parameters, and keep higher-level knowledge workflows in templates and atlas projections instead of oversized tool lists.
The project is built for three jobs:
- use ArangoDB as a document, graph, and search substrate from MCP clients
- keep the MCP surface small with
search -> describe -> execinstead of hundreds of exposed tools - turn notes, edges, templates, views, and graph topology into handbook-style knowledge coordinates
It has zero npm dependencies and runs on Node.js built-ins.
Why It Exists
Agent database tooling has two common failure modes: every database operation becomes a separate MCP tool, or the agent has to hand-write queries without enough local context. Both scale badly.
This server uses a layered surface:
MCP client
-> small MCP tool surface
-> schema-owned tool owners
-> ArangoDB OpenAPI operation catalog
-> ArangoDB
Large catalogs stay searchable. Stable workflows become templates. Knowledge structure becomes atlas projections. The agent keeps a coordinate system instead of guessing through a giant action menu.
Current Surface
| Tool | Use |
|---|---|
mcp.mcp |
Inspect the live MCP tool catalog, categories, and surface roots. |
mcp.help |
Read full schema-owned help for one tool action. |
mcp.arango |
Search, describe, and execute raw ArangoDB OpenAPI operations. |
mcp.tool.database |
Work with ArangoDB database lifecycle operations. |
mcp.tool.collection |
Work with collections, documents, indexes, and CRUD schema gates. |
mcp.tool.view |
Work with ArangoSearch views and analyzers. |
mcp.tool.graph |
Work with ArangoDB graph operations. |
mcp.tool.admin |
Work with administration, AQL, monitoring, and task operations. |
mcp.tool.template |
List, search, validate, manage, and execute curated AQL templates. |
mcp.tool.atlas |
Read handbook-style projections over notes, edges, topology, and readiness hints. |
The generic ArangoDB flow is:
mcp.arango search -> mcp.arango describe -> mcp.arango exec
Category tools expose direct owner actions. The tools/list description keeps
one compact line per action in the same shape as the real call:
mcp.tool.collection(action=insert, payload={"collection":"notes","document":{}})
mcp.tool.admin(action=aql_query, payload={"query":"RETURN 1"})
Use mcp.help for the full schema-owned action page:
mcp.help(action=get, payload={"target":"mcp.tool.collection","action":"insert"})
Unmigrated actions are not advertised as normal callable actions. If an older
action name is known but not implemented in master, mcp.help get returns an
explicit unavailable page instead of a normal payload contract.
Raw OpenAPI, template, and atlas profile selection still use payload.target
because those actions select a nested catalog entry.
Quick Start
git clone https://github.com/woolkingx/mcp-arango-mind.git
cd mcp-arango-mind
cp .env.example .env
# Edit .env with your ArangoDB connection details.
node server.mjs
No npm install is required.
For HTTP transport:
node server.mjs --sse --port 8000
Configuration
The connection cascade is:
CLI flags
-> environment variables
-> .env
-> config/profiles.json
-> config/arango-connection.json schema defaults
Common environment variables:
| Variable | Default | Description |
|---|---|---|
ARANGO_URL |
http://127.0.0.1:8529 |
ArangoDB server URL. |
ARANGO_DB |
_system |
Database name. |
ARANGO_USERNAME |
root |
Basic auth username. |
ARANGO_PASSWORD |
empty | Basic auth password. |
ARANGO_TOKEN |
unset | Bearer token; overrides username and password. |
ARANGO_LOG_LEVEL |
info |
silent, error, warn, info, debug, or trace. |
Useful CLI flags:
--profile <name> Select profile from config/profiles.json
--debug Force debug logging
--sse Use HTTP JSON transport
--port <number> HTTP port, default 8000
--host <address> HTTP bind address, default 127.0.0.1
--audit <file> Write structured JSON audit events
Example Calls
Search the ArangoDB OpenAPI catalog:
{
"action": "search",
"payload": {
"query": "collection create"
}
}
Execute a known operation:
{
"action": "exec",
"payload": {
"target": "createCollection",
"params": {
"name": "notes",
"type": 2
}
}
}
Run a curated template:
{
"action": "call",
"payload": {
"target": "memory.view",
"params": {
"query": "handbook",
"tags": ["knowledge-organization"],
"limit": 10
}
}
}
Insert a document through the collection owner:
{
"action": "insert",
"payload": {
"collection": "notes",
"document": {
"title": "Example",
"content": "Schema-owned write."
}
}
}
Read an atlas projection:
{
"action": "call",
"payload": {
"target": "atlas.index",
"params": {
"root": "notes/root",
"depth": 2
}
}
}
MCP clients send these payloads through tools/call with the corresponding tool name, such as mcp.arango, mcp.tool.template, or mcp.tool.atlas.
Handbook
The public README is the quickstart and product entry. Architecture truth lives in the handbook:
The handbook records owner boundaries, schema roots, topology, acceptance gates, migration rationale, and the atlas design.
Verification
npm test
node scripts/handbook-link-check.mjs docs/handbook
node scripts/handbook-parse.mjs docs/handbook/index.html
Live ArangoDB checks use the connection from .env or environment variables. Tests that require ArangoDB skip when no live connection is configured.
Project Status
Current release line: 0.3.0.
Runtime boundary:
- Node.js 22+
- zero npm dependencies
- MCP stdio transport by default
- HTTP JSON transport via
--sse - ArangoDB operation contracts projected from
arango/schema/arango.openapi.schema.json - tool activation projected from
tools/schema/tools.schema.json
File-size discipline:
- project-owned
.mjsfiles stay under 500 lines - 200 lines is the recommended split checkpoint
- vendored
src/lib/schema2object.mjsfollows its sync gate
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。