AgenticMind
@Moai-Team-LLC
About AgenticMind
Auditable, self-improving knowledge & memory for AI agents, served over MCP. Citation-enforced answers (no source, no claim), a replayable why-trace per answer, and a judge-gated loop that promotes validated knowledge. Zero-key local embeddings (bge-m3), hybrid vector + BM25 retr
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"agenticmind": {
"url": "https://YOUR_HOST/mcp",
"headers": {
"Authorization": "Bearer YOUR_MCP_TOKEN"
}
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is AgenticMind?
AgenticMind is a self-hosted, auditable knowledge and memory layer for AI agents, served over the Model Context Protocol (MCP). It provides citation-enforced answers with a full why-trace, a self-improving corpus, and runs entirely on Postgres with pgvector—no additional vector stores or external dependencies required for embeddings.
How to use AgenticMind?
Quickstart: run OPENAI_API_KEY=sk-... sh -c "$(curl -fsSL https://raw.githubusercontent.com/Moai-Team-LLC/AgenticMind/main/quickstart.sh)" to pull Docker images and bring up the server. From source, clone the repo, run ./setup.sh then npm run dev. Point any MCP client (Claude Code, Cursor, LangGraph) at http://localhost:3000/mcp with the auto-generated bearer token.
Key features of AgenticMind
- Citation-enforced answers: every claim tied to a numbered source.
- Replayable why-trace per answer: retrieved, ranked, and used.
- Self-improving corpus via judge-gated compounding loop.
- Tiered retrieval: chunks, typed fact cards, knowledge graph.
- Single datastore: Postgres + pgvector for all indexes.
- Zero-key offline embeddings (bge-m3) for multilingual retrieval.
Use cases of AgenticMind
- Agents that must answer from trusted sources with provable citations.
- Systems requiring a replayable audit trail for every answer.
- Self-hosted knowledge bases that improve automatically without human feedback.
- Multi-agent setups that need governed, accountable memory across agents.
- Production deployments where a single Postgres database replaces vector-store sprawl.
FAQ from AgenticMind
How does AgenticMind differ from plain RAG or memory SDKs?
AgenticMind enforces citations, provides a full why-trace for every answer, and includes a self-improving corpus and relational verification via a knowledge graph—all on Postgres+pgvector, unlike most RAG solutions that offer only fuzzy recall.
What are the runtime and database requirements?
Requires Node ≥22.18 or Bun ≥1.3, and PostgreSQL with pgvector. Embeddings run locally by default (bge-m3), so no cloud key is needed for retrieval; only a chat-model key (e.g., OpenAI API key) is required for answer synthesis.
How does the corpus self-improve?
Validated answers are promoted back into the corpus through a judge-gated compounding loop driven by programmatic signals—not human feedback. A kl_signal tool emits these signals on prior answers.
Is there a frontend or UI?
No. AgenticMind is headless; agents interact with it solely via MCP tools over streamable HTTP. The only consumers are agents.
What authentication does the MCP server use?
The MCP endpoint uses per-token bearer authentication with scoped, least-privilege tokens. In the quickstart, a static bearer key (MCP_API_KEY) is auto-generated; from source, a JWT with typ="mcp" is accepted. Authorization is fail-closed.
More Memory & Knowledge MCP servers
mcp-local-rag
nkapila6"primitive" RAG-like web search model context protocol (MCP) server that runs locally. ✨ no APIs ✨
minutes
silversteinEvery meeting, every idea, every voice note — searchable by your AI. Open-source, privacy-first conversation memory layer.
Context7 MCP - Up-to-date Docs For Any Cursor Prompt
upstashContext7 Platform -- Up-to-date code documentation for LLMs and AI code editors
Context Portal MCP (ConPort)
GreatScottyMacContext Portal (ConPort): A memory bank MCP server building a project-specific knowledge graph to supercharge AI assistants. Enables powerful Retrieval Augmented Generation (RAG) for context-aware development in your IDE.
RAG Documentation MCP Server
hannesrudolphAn MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context.
Comments