Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for Fathom Works RAG that exposes a self-hosted knowledge base as tools for any MCP-capable LLM to query documents, manage libraries, and ingest files or URLs.

README.md

$ rag-mcp

MCP server for Fathom Works RAG — exposes the self-hosted knowledge base as tools any MCP-capable LLM can call.

Query documents, manage libraries, and ingest local files or URLs without opening the web UI.

---

[ what it does ]

| Tool | Who can call it | Description | |------|-----------------|-------------| | query | any user | Semantic + BM25 search across one or more libraries; returns LLM answer with citations | | list_libraries | any user | List libraries and their document counts | | list_documents | any user | List documents, optionally filtered by library or title | | add_file | admin | Ingest a local file (PDF, TXT, DOC, DOCX) into a library | | add_url | admin | Ingest a web URL into a library | | get_job_status | admin | Check ingestion job progress | | delete_document | admin | Remove a document and all its vectors |

---

[ quick start ]

Option A — run with Python (no Docker)

git clone https://github.com/Jemplayer82/rag-mcp.git
cd rag-mcp
pip install -r requirements.txt
cp .env.example .env   # fill in RAG_BASE_URL + credentials
python mcp_server.py   # starts the stdio MCP server

Option B — run with Docker

docker pull ghcr.io/jemplayer82/rag-mcp:latest

No config file needed — pass environment variables directly at runtime (see Claude config below).

---

[ connect to Claude ]

Claude Desktop (claude_desktop_config.json)

Docker (recommended — zero local setup):

{
  "mcpServers": {
    "rag": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "-e", "RAG_BASE_URL=http://YOUR_RAG_HOST:8000",
        "-e", "RAG_USERNAME=admin",
        "-e", "RAG_PASSWORD=yourpassword",
        "ghcr.io/jemplayer82/rag-mcp:latest"
      ]
    }
  }
}

Python (local install):

{
  "mcpServers": {
    "rag": {
      "command": "python",
      "args": ["/path/to/rag-mcp/mcp_server.py"],
      "env": {
        "RAG_BASE_URL": "http://YOUR_RAG_HOST:8000",
        "RAG_USERNAME": "admin",
        "RAG_PASSWORD": "yourpassword"
      }
    }
  }
}

Claude Code (.claude/mcp.json)

{
  "mcpServers": {
    "rag": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "-e", "RAG_BASE_URL=http://YOUR_RAG_HOST:8000",
        "-e", "RAG_USERNAME=admin",
        "-e", "RAG_PASSWORD=yourpassword",
        "ghcr.io/jemplayer82/rag-mcp:latest"
      ]
    }
  }
}

Or via CLI:

claude mcp add rag -- docker run -i --rm \
  -e RAG_BASE_URL=http://YOUR_RAG_HOST:8000 \
  -e RAG_USERNAME=admin \
  -e RAG_PASSWORD=yourpassword \
  ghcr.io/jemplayer82/rag-mcp:latest

---

[ auth ]

| Method | Variables | Notes | |--------|-----------|-------| | Username + password | RAG_USERNAME, RAG_PASSWORD | Recommended. Token is fetched on first call and refreshed automatically on expiry. | | Static JWT | RAG_TOKEN | Works but cannot self-refresh. Copy from browser DevTools → Application → Local Storage → rag_token. |

---

[ environment variables ]

| Variable | Default | Description | |----------|---------|-------------| | RAG_BASE_URL | http://localhost:8000 | Base URL of the RAG app (no trailing slash) | | RAG_USERNAME | — | Admin or user account username | | RAG_PASSWORD | — | Account password | | RAG_TOKEN | — | Pre-generated JWT (alternative to username/password) |

---

[ using the tools ]

Ask a question (search all libraries): `` query("What are the treatment options for autonomic dysreflexia?") ``

Narrow to specific libraries: `` query("Jones Act seaman status elements", library_ids=[2, 5]) ``

Ingest a local file: `` add_file("/Users/me/docs/protocol.pdf", library_id=1, title="Care Protocol 2024") get_job_status(42) # poll until complete ``

Ingest a URL: `` add_url("https://example.com/article", title="Article", library_id=1) ``

---

[ smoke test ]

Test without connecting to Claude Desktop using the MCP Inspector:

RAG_BASE_URL=http://YOUR_HOST:8000 RAG_USERNAME=admin RAG_PASSWORD=yourpass \
  npx @modelcontextprotocol/inspector python mcp_server.py

---

[ requirements ]

  • Python 3.10+ (uses X | None type annotations) — local machine, not the RAG container
  • Running Fathom Works RAG instance (self-hosted or VPS)

---

[ license ]

Released under the GNU AGPL-3.0.

---

<sub>Part of the <a href="https://github.com/Jemplayer82/RAG">Fathom Works RAG</a> ecosystem.</sub>

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.