PlanSmart Enterprise RAG
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., "@PlanSmart Enterprise RAGwhat does the SOP say about client onboarding?"
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.
🧠 PlanSmart: Enterprise RAG & Knowledge Engine
Executive Summary: A production-grade, containerized Retrieval-Augmented Generation (RAG) backend API built as the centralized "AI Brain" for PlanSmart Agency. It autonomously ingests, vectorizes, and retrieves proprietary business frameworks, internal documentation, and client histories to augment Claude's reasoning capabilities.
🏗️ System Architecture
Built on Domain-Driven Design (DDD), this headless API strictly separates data ingestion, vector retrieval, and agentic reasoning.
graph TD
subgraph Data Layer
A[Raw Business Documents] -->|Ingestion Pipeline| B(Text Splitter & Embeddings)
B -->|Store| C[(ChromaDB Vector Store)]
end
subgraph API & Reasoning Layer
D[Client / MCP Server] -->|REST /query| E[FastAPI Engine]
E -->|Semantic Search| C
C -->|Context| E
E -->|Augmented Prompt| F[Anthropic Claude 3.5 API]
F -->|Verified Answer| E
E -->|JSON Response| D
endRelated MCP server: Chroma MCP Server
💼 The Business Case & ROI
This repository is not a proof-of-concept; it is the infrastructure designed to power daily operations, solving key bottlenecks:
Zero-Friction Knowledge Transfer: Eliminates information silos. New team members or AI agents can instantly query historical client data and Standard Operating Procedures (SOPs) via API.
Hallucination-Free AI: By strictly grounding Claude's responses in our localized ChromaDB vector store, we ensure all generated strategies are 100% aligned with PlanSmart's business standards.
Scalable Architecture: Dockerized deployment ensures the system can be scaled horizontally behind a load balancer, reducing research time from hours to milliseconds.
⚙️ Core Engineering Principles
Headless API-First Design: Exposed entirely via FastAPI. The system is decoupled from any specific frontend, allowing integration into Slack bots, internal dashboards, or Model Context Protocol (MCP) clients.
Evaluation-Ready (Eval): The architecture is designed to support RAG evaluation frameworks (like Ragas) to quantitatively measure retrieval precision and hallucination rates.
Containerized Portability: Fully managed via Docker and docker-compose, ensuring deterministic builds across development, staging, and production environments.
🚀 Quick Start & Deployment
1. Clone and configure:
git clone <repo-url>
cd enterprise-rag
cp .env.example .env # Add your ANTHROPIC_API_KEY2. Run via Docker (Recommended for Production):
docker-compose up --build -dThe API will be available at http://localhost:8000. Access the interactive Swagger documentation at http://localhost:8000/docs.
3. Run Locally (Development):
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
uvicorn src.api.main:app --reload📂 Project Structure
src/api/ # FastAPI application, routing, and Pydantic schemas
src/agents/ # Claude reasoning logic and prompt templates
src/ingestion/ # Document loaders and chunking strategies
src/retrieval/ # ChromaDB vector store communication layer
src/tools/ # Extended capabilities (e.g., live web research)
tests/ # Unit tests and RAG Evaluation (Eval) scripts
docker-compose.yml # Container orchestration
Dockerfile # App image definitionLicense: Proprietary — PlanSmart. All rights reserved.
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-qualityAmaintenanceProvides semantic memory and persistent storage for Claude, leveraging ChromaDB and sentence transformers for enhanced search and retrieval capabilities.31,911Apache 2.0
- -license-quality-maintenanceEnables LLMs to perform semantic search and document management using ChromaDB, supporting natural language queries with intuitive similarity metrics for retrieval augmented generation applications.
- Alicense-qualityDmaintenanceEnables Claude to perform retrieval-augmented generation using LangChain, ChromaDB, and HuggingFace models for domain-aware reasoning with PDF embedding, smart retrieval, reranking, and citation-based responses.4MIT
- Alicense-qualityCmaintenanceEnables AI assistants to search and retrieve information from your knowledge base using RAG (Retrieval-Augmented Generation) with hybrid search, document indexing, and ChromaDB vector storage.245MIT
Related MCP Connectors
Connect your team's living knowledge base — docs, data, issues, CRM — to Claude and ChatGPT.
Search your knowledge bases from any AI assistant using hybrid RAG.
Your company's brain for AI agents. Cited, permission-aware knowledge across every system.
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/Adikasz/Enterprise-RAG-Knowledge-Engine'
If you have feedback or need assistance with the MCP directory API, please join our Discord server