Skip to main content
Glama
Adikasz

PlanSmart Enterprise RAG

by Adikasz

🧠 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
    end

Related 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_KEY

2. Run via Docker (Recommended for Production):

docker-compose up --build -d

The 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 definition

License: Proprietary — PlanSmart. All rights reserved.

F
license - not found
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • -
    license
    -
    quality
    -
    maintenance
    Enables LLMs to perform semantic search and document management using ChromaDB, supporting natural language queries with intuitive similarity metrics for retrieval augmented generation applications.
  • A
    license
    -
    quality
    D
    maintenance
    Enables 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.
    4
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Enables 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.
    245
    MIT

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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