Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Ragtag

FreeNot checked

A local RAG MCP server that enables AI tools like Claude to search indexed codebases and documentation using vector search with Ollama models.

GitHubEmbed

About

A local RAG MCP server that enables AI tools like Claude to search indexed codebases and documentation using vector search with Ollama models.

README

Hacky MVP for local RAG search.

How to install

Clone repo

Clone this repo

cd /Users/suhdude/repos
gh repo clone weston-barger/ragtag-mcp

Pull down the codebases and documentation you want to index

You'll need local copies of the content you want to search. Example:

cd /Users/suhdude/repos
gh repo clone holoviz/param
gh repo clone holoviz/panel
gh repo clone bokeh/bokeh

Set up your rag_config.json file

Set up your rag_config.json to look like this

{
  "indices": [],
  "dbStoragePath": "/Users/suhdude/repos/ragtag-mcp/db",
  "model": {
    "embedding": "nomic-embed-text:latest",
    "llm": "qwen3:latest"
  }
}

the dbStoragePath is where your vector database for searching will live.

Set up vitrual environment and install requirements

You'll want to set up a python venv for this repo. Run

python3 -m venv .venv
source ./.venv/bin/activate
pip3 install -r requirements.txt --upgrade

Install Ollama + accompanying models

The main.py has a command that will help you do this on OSX. Run

python main.py osx_install

NOTE: you'll want to re-run the osx_install command if you change the embedding or llm models in the config.

Create your RAG search indices

Now fill our the indices section of your rag_config.json file. There is an example in example_rag_config.json. Then run

python main.py build

This may take a a bit. See python main.py build --help to see how to build one index at a time.

Claude instructions

Install the MCP server in your Claude project

Add

{
  "mcpServers": {
    "RAG": {
      "command": "/Users/suhdude/repos/ragtag-mcp/.venv/bin/python3",
      "args": [
        "/Users/suhdude/repos/ragtag-mcp/main.py",
        "serve"
      ]
    }
  }
}

to your .mcp.json file for your project.

Check install

Open claude an issue /mcp. You should see RAG!

Optional: Tell Claude to use the RAG search to get context

Add something to your CLAUDE.md file to tell it to use RAG to get context

(My project) relies on packages pkg1, pkg2, pkg3. Use the RAG search MCP server to understand how to use packages pkg1, pkg2, pkg3 when planning code changes. 

from github.com/weston-barger/ragtag-mcp

Install Ragtag in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install ragtag-mcp

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add ragtag-mcp -- uvx ragtag

FAQ

Is Ragtag MCP free?

Yes, Ragtag MCP is free — one-click install via Unyly at no cost.

Does Ragtag need an API key?

No, Ragtag runs without API keys or environment variables.

Is Ragtag hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Ragtag in Claude Desktop, Claude Code or Cursor?

Open Ragtag on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Ragtag with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All ai MCPs