local-architecture-brain
Click on "Deploy 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., "@local-architecture-brainHow does our internal payment service work?"
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.
Local MCP RAG Server
An offline, privacy-first Model Context Protocol (MCP) server that empowers LLM clients (like Claude Desktop) to chat with your local markdown engineering documentation.
How it Works
Indexer: Reads
.mdfiles, generates embeddings via Local Ollama (nomic-embed-text), and stores them in ChromaDB.MCP Server: Exposes a
search_internal_docstool using theFastMCPframework overstdio.Zero Cloud Leaks: All indexing and retrieval happens completely locally on your machine.
Related MCP server: rag-mcp
Setup
1. Requirements
Python 3.12+
Ollama running locally.
ollama pull nomic-embed-text
pip install -r requirements.txt2. Index your docs
Place markdown files in /internal_docs and run:
python src/indexer.py3. Connect to Claude Desktop
Add this to your claude_desktop_config.json (Mac: ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"local-architecture-brain": {
"command": "python",
"args": ["/absolute/path/to/local-mcp-rag-server/src/server.py"]
}
}
}Restart Claude Desktop, and you can now ask it: "How does our internal payment service work?
This server cannot be deployed
Maintenance
Related MCP Connectors
Open-source Obsidian for MDX - edit local docs with agent assistance
Ingest, manage, and retrieve documents for RAG-powered AI applications
Versioned documentation registry and semantic search for AI tools and coding assistants.
Provide your AI coding tools with token-efficient access to up-to-date technical documentation for…
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides direct access to local documentation files through simple search and overview tools, enabling LLMs to query project-specific markdown documentation without requiring vector databases or RAG pipelines.MIT
- FlicenseAqualityDmaintenanceEnables indexing local documents (PDF, Markdown, text, code) into a knowledge base and querying them via semantic search using local embeddings, all running privately on your machine.4-
- AlicenseAqualityAmaintenanceIndexes your project's markdown documentation and exposes it to AI agents via local hybrid search (lexical + semantic) with progressive disclosure tools.34715MIT
- FlicenseAqualityBmaintenanceEnables semantic search over local markdown specs, RFCs, and docs using Ollama and LanceDB, allowing AI agents to find relevant information by meaning rather than exact keywords.3-