Arra Oracle
Allows integration with n8n workflows via MCP, enabling automation and AI-powered search and knowledge management.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Arra Oraclesearch the oracle for wisdom on resilience"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Arra Oracle V3 — Docker-first MCP Memory + Search
Docker run →
arra mine ~/notes→ open the UI → search your memory.
Arra Oracle is the Oracle family's local memory and search layer. It stores your
notes in SQLite, searches them with FTS/vector-capable APIs, and exposes the same
memory through HTTP, MCP, the arra CLI, plugins, and the Studio UI.
Quick start: Docker is the primary path
You only need Docker, curl, and a notes folder. This path starts the HTTP
server, mines ~/notes, opens the built-in UI, and performs the first search.
No local Bun install, API key, schema choice, or vector service is required.
1. Run Arra Oracle
export ARRA_PORT="${ARRA_PORT:-47778}"
export ARRA_URL="http://127.0.0.1:${ARRA_PORT}"
export ARRA_CONTAINER="${ARRA_CONTAINER:-arra-oracle}"
export ARRA_VOLUME="${ARRA_VOLUME:-arra-oracle-data}"
export ARRA_NOTES_DIR="${ARRA_NOTES_DIR:-$HOME/notes}"
mkdir -p "$ARRA_NOTES_DIR"
docker volume create "$ARRA_VOLUME" >/dev/null
docker run --rm -d --name "$ARRA_CONTAINER" \
-p "${ARRA_PORT}:47778" \
-v "${ARRA_VOLUME}:/data" \
-v "${ARRA_NOTES_DIR}:${ARRA_NOTES_DIR}:ro" \
ghcr.io/soul-brews-studio/arra-oracle-v3:http
until curl -sf "${ARRA_URL}/api/health" >/dev/null; do sleep 1; done
echo "Arra Oracle is ready: ${ARRA_URL}"If port 47778 is busy, run export ARRA_PORT=47878 first. If your notes live
somewhere else, set ARRA_NOTES_DIR=/path/to/notes before docker run.
2. Mine your notes
Use the CLI bundled inside the running container so ingestion writes to the same Docker volume as the server:
arra() {
docker exec "$ARRA_CONTAINER" bun dist-cli/index.js "$@"
}
arra mine ~/notesRe-running arra mine is safe: unchanged Markdown, MDX, and text files are
skipped with deterministic IDs. If you pointed ARRA_NOTES_DIR somewhere else,
run arra mine "$ARRA_NOTES_DIR".
3. Open the UI
Open Simple Mode in your browser:
echo "${ARRA_URL}/simple"Simple Mode shows health, save/search actions, and links to advanced surfaces.
4. Search
Use the UI search box, or call the HTTP API directly:
curl -sfS "${ARRA_URL}/api/v1/search?q=runbook&mode=fts&limit=5"For grounded answers with citations:
curl -sfS "${ARRA_URL}/api/v1/ask" \
-H 'content-type: application/json' \
-d '{"q":"What did I write about runbooks?","limit":5,"llm":false}'"llm": false keeps the answer extractive and local.
Related MCP server: arcana-mcp
Stop, restart, or inspect
curl -sf "${ARRA_URL}/api/health"
docker logs "$ARRA_CONTAINER"
docker stop "$ARRA_CONTAINER"Restart later by re-running the docker run block. Your memory remains in the
Docker volume named by $ARRA_VOLUME.
MCP clients with Docker
Use the stdio image when a desktop or agent needs Oracle MCP tools. It can share the same Docker volume as the HTTP server:
claude mcp add arra-oracle -- docker run --rm -i \
-e ORACLE_LOG_TARGET=stderr \
-v "${ARRA_VOLUME:-arra-oracle-data}:/data" \
ghcr.io/soul-brews-studio/arra-oracle-v3:stdio
claude mcp listThe MCP surface includes Oracle search, read, learn, recap, profile, research note, trace, and tool-catalog capabilities.
What ships
Area | What it gives you |
Docker HTTP image | Long-running local server on port |
| First ingestion path for folders of |
Simple Mode UI | Browser entry point at |
HTTP API |
|
MCP server | Stdio tool server for Claude, Codex, Docker MCP Toolkit, and agent fleets. |
Memory contracts | Confidence-ranked retrieval, reversible supersede history, provenance, and tenant-scoped reads/writes. |
Plugins | Unified manifests for CLI commands, API/menu rows, MCP tools, sidecars, exports, and lifecycle hooks. |
Edge/frontends | Cloudflare Worker shapes, Vercel Studio proxy, React/Tauri Studio, and canvas surfaces. |
Architecture at a glance
Notes / agents / browsers / MCP clients
│
├── Docker HTTP: ghcr.io/...:http on :47778
├── Docker stdio MCP: ghcr.io/...:stdio
├── CLI: arra mine/search/learn/export
└── Studio and Simple Mode UI
│
Elysia routes + MCP tools + plugin registry
│
SQLite + FTS + optional vector stores + local vault filesThe design goal is one memory core with thin adapters. CLI, HTTP, MCP, plugins, canvas, and web/desktop surfaces reuse shared contracts instead of duplicating business logic.
Source development path
Use a local checkout only when editing Arra Oracle itself:
git clone https://github.com/Soul-Brews-Studio/arra-oracle-v3.git
cd arra-oracle-v3
bun install
bunx tsc --noEmit
bun run serverThen open http://localhost:47778/simple or call
http://localhost:47778/api/v1/search?q=oracle&mode=fts.
Useful checks before a PR:
bunx tsc --noEmit
bun test tests/http/<cluster>/
bun test tests/docs/link-checker.test.tsWork targets alpha; never push or merge directly to main. Keep source, test,
and docs files at or below 250 lines.
More docs
License
Arra Oracle V3 is licensed under BUSL-1.1. See LICENSE.
Acknowledgments
Inspired by claude-mem by Alex Newman — process manager patterns, worker service architecture, and hook system concepts.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceMCP Memory Server for Claude Code that provides persistent context across sessions using semantic search (RAG).Apache 2.0
- AlicenseAqualityCmaintenanceSemantic vector DB as an MCP server for Claude Code — SQLite + FTS5 + local ONNX embeddings. Gives Claude persistent, searchable project knowledge across conversations.12MIT
- Alicense-qualityDmaintenanceAn MCP server for storing and retrieving thoughts, notes, and ideas with semantic vector search, enabling integration with Claude Desktop and other MCP clients.MIT
- Flicense-qualityDmaintenanceA lightweight MCP memory server built on SQLite + FTS5, providing cross-session long-term memory for Claude Code.
Related MCP Connectors
Hosted MCP memory: save sessions/decisions once, search from Claude, Cursor, ChatGPT. EU-hosted FTS.
MCP server giving Claude AI access to 22+ NYC public-record databases for real estate due diligence
Serve a folder of Markdown notes as an MCP server: hybrid search, reading, and sourced answers.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Soul-Brews-Studio/arra-oracle-v3'
If you have feedback or need assistance with the MCP directory API, please join our Discord server