Local RAG MCP server for code and documentation
Project description
pow-mcp-rag-new
A local RAG (Retrieval-Augmented Generation) MCP server for project documentation and code.
Overview
This project provides a Model Context Protocol (MCP) server that indexes project documentation (specs, headers, source files, PDFs, configs) into a local vector database (ChromaDB) and exposes semantic search tools to Kiro or any MCP-compatible client.
Supports multiple tech stacks: C/C++, Python, Go, C#, Node.js/TypeScript.
Distribution name: pow-rag-mcp (unrelated to rag-mcp or rag-mcp-server packages).
Minimum Python version: 3.11 (matches requires-python = ">=3.11" in pyproject.toml).
Three deployment modes:
- Docker (Phase 1) — zero local Python needed; server runs in a container
- PyPI (recommended for new users) (Phase 2a) — install via
uvx --from,uv tool install, orpip installfrom PyPI; no repo checkout or local index needed - Local PyPI + uvx (Phase 2b) — install
rag-mcpviauvxfrom a local package index; no persistent venv, easiest to keep updated. Stepping stone toward a hosted index. - pip install (Phase 2c) — install
rag-mcpdirectly into a Python environment
License
This project is licensed under the Apache 2.0 License — see the LICENSE file for details.
Quick Start
PyPI (recommended for new users)
Install from PyPI using your preferred method:
Option 1: One-off execution with uvx
uvx --from pow-rag-mcp rag-mcp serve
Option 2: Persistent install with uv tool install
uv tool install pow-rag-mcp
Option 3: Traditional pip
pip install pow-rag-mcp
All three methods fetch pow-rag-mcp from PyPI directly — no repository checkout or local package index is required.
See doc/PIP_INSTALL_GUIDE.md for full details (config seeding, bundled docs, upgrades, and migrating to a hosted index).
Local PyPI + uvx (recommended for development/publishing workflows)
cd <your-checkout>/pow-mcp-rag-new
setup-pypi.bat
This builds the wheel, publishes it to a local pypiserver index (packages/), installs it as a
persistent uv tool (a stable exe at ~/.local/bin/rag-mcp.exe — resolved once, not on
every launch), and wires up ~/.kiro/settings/mcp.json + .vscode/mcp.json to launch it directly.
No Docker, no persistent venv to manage. See TROUBLESHOOTING.md for why
this is preferred over plain uvx --from on Windows with this package's large dependency tree.
Full guide: doc/PIP_INSTALL_GUIDE.md
Docker (alternative)
cd <your-checkout>/pow-mcp-rag-new
docker build -t rag-mcp-new-pip:latest .
# Index your projects (set SRC to your repos folder)
$SRC = "C:/Users/you/GIT" # PowerShell
docker run --rm -v "${SRC}:/projects:ro" -v rag-mcp-new-pip-data:/app/data rag-mcp-new-pip:latest python indexer.py
Then add to ~/.kiro/settings/mcp.json:
{
"mcpServers": {
"rag-mcp": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-v", "C:/Users/you/GIT:/projects:ro",
"-v", "rag-mcp-new-pip-data:/app/data",
"rag-mcp-new-pip:latest",
"python", "server.py", "--no-reindex"
],
"disabled": false,
"autoApprove": [
"search_docs", "search_specs", "search_code", "search_logs",
"list_projects", "list_files", "get_document", "get_project_summary",
"find_function", "find_variable", "search_hex_pattern", "compare_projects",
"add_project", "add_file", "add_folder", "add_pattern", "index_log_file"
]
}
}
}
Restart Kiro — the RAG is ready. Full guide: doc/DOCKER_GUIDE.md
(project management, HTTP server, docker run CLI reference, setup-docker.bat automation).
pip install (hosted index, once available)
pip install torch --index-url https://download.pytorch.org/whl/cpu
rag-mcp config # seeds config on first run, shows resolved paths
rag-mcp index
rag-mcp serve
Full guide: doc/PIP_INSTALL_GUIDE.md
Documentation
Reading this from
pip show/ a package-index page instead of the repo? This README's links are relative paths into thepow-mcp-rag-newrepo (GitHub/clone) and won't resolve from an installed package alone. Three docs travel with the install and are available offline viarag-mcp docs <name>(see table below); the rest require the repo checkout.
| Guide | Covers | Bundled in package? |
|---|---|---|
| doc/DOCKER_GUIDE.md | Full Docker setup, adding/removing projects, HTTP server, complete CLI reference (Docker mode) | No — repo only |
| doc/PIP_INSTALL_GUIDE.md | Local PyPI + uvx setup, pip installation, config seeding, building/publishing the wheel | No — repo only |
| doc/ARCHITECTURE.md | How indexing/retrieval works, embedding model, PDF handling, file structure | No — repo only |
| doc/CLI_REFERENCE.md | Full rag-mcp CLI reference: serve/index/config/docs, all flags and env vars |
Yes — rag-mcp docs cli |
| doc/TOOLS_GUIDE.md | Full MCP tool reference (21 tools) with usage examples | Yes — rag-mcp docs tools |
| doc/LOG_INDEXING_GUIDE.md | Structured log indexing usage guide | Yes — rag-mcp docs log-indexing |
| doc/LOG_PATTERN_CONFIGURATION.md | How to write pattern configs for new log formats | Yes — rag-mcp docs log-patterns |
| doc/TROUBLESHOOTING.md | Common issues and fixes | No — repo only |
Run rag-mcp docs with no arguments to list the bundled docs from any install (pip, uvx,
or uv tool install) without needing the repo.
What gets indexed
File types are configured in config.yaml under index_extensions. By default: C/C++, Python,
React/JS/TS, C#, Go, Kotlin, Markdown, PDF, text. Directories in excluded_dirs (build,
node_modules, .git, ...) are skipped. See doc/DOCKER_GUIDE.md
for details on configuring projects and adding new sources.
MCP Tools
Once configured, 21 MCP tools are available for searching, browsing, and managing your indexed
projects — see doc/TOOLS_GUIDE.md for the full list with examples
(also available offline: rag-mcp docs tools).
Key tools:
search_docs/search_specs/search_code— semantic search, scoped by file typesearch_hex_pattern,find_function,find_variable— exact text matching for codes/symbolssearch_logs,index_log_file— structured log search and on-demand indexingadd_project,add_pattern,remove_project— index management from Kiro chat
Log Indexing
Structured log indexing with severity filtering, time-window search, and hex error-code
matching. The pipeline is fully generic — driven by YAML pattern configs, so any log format
can be supported without code changes. See doc/DOCKER_GUIDE.md
and doc/LOG_INDEXING_GUIDE.md (also: rag-mcp docs log-indexing).
Need Help?
See doc/TROUBLESHOOTING.md for common issues, including:
- MCP server hangs on startup
- Stale search results after re-indexing
entrypoint.shexec errors from CRLF line endings--project <NAME>silently doing nothing- Concurrent query errors
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pow_rag_mcp-1.1.8.tar.gz.
File metadata
- Download URL: pow_rag_mcp-1.1.8.tar.gz
- Upload date:
- Size: 95.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ba617c5d2451224a4f31a677d23f8706a43f488fa541f3e9069c43276c6cdf8
|
|
| MD5 |
c33b6c22f2bb7700c33a382459b4cfa8
|
|
| BLAKE2b-256 |
1280a9259558e9abf4aecbc345b30f93da9ac7030674ef7307523cdbee2cd1a2
|
Provenance
The following attestation bundles were made for pow_rag_mcp-1.1.8.tar.gz:
Publisher:
release.yml on powmarx/pow-mcp-rag-new
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pow_rag_mcp-1.1.8.tar.gz -
Subject digest:
7ba617c5d2451224a4f31a677d23f8706a43f488fa541f3e9069c43276c6cdf8 - Sigstore transparency entry: 2336583091
- Sigstore integration time:
-
Permalink:
powmarx/pow-mcp-rag-new@19b29d54f9e3b6d66ce97b8f582cc255bbe216a1 -
Branch / Tag:
refs/tags/v1.1.8 - Owner: https://github.com/powmarx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@19b29d54f9e3b6d66ce97b8f582cc255bbe216a1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pow_rag_mcp-1.1.8-py3-none-any.whl.
File metadata
- Download URL: pow_rag_mcp-1.1.8-py3-none-any.whl
- Upload date:
- Size: 110.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7509b42ecc196ed6c6b95953ceeb3ee69ce1897d8c716f49b77fe35258653f8d
|
|
| MD5 |
698fdca7ddbfd5ac18acd409a79f407e
|
|
| BLAKE2b-256 |
a582c14db7f1673ed08e48375a78ad24423b6a3e3a2ebab884a011853a7188b9
|
Provenance
The following attestation bundles were made for pow_rag_mcp-1.1.8-py3-none-any.whl:
Publisher:
release.yml on powmarx/pow-mcp-rag-new
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pow_rag_mcp-1.1.8-py3-none-any.whl -
Subject digest:
7509b42ecc196ed6c6b95953ceeb3ee69ce1897d8c716f49b77fe35258653f8d - Sigstore transparency entry: 2336583098
- Sigstore integration time:
-
Permalink:
powmarx/pow-mcp-rag-new@19b29d54f9e3b6d66ce97b8f582cc255bbe216a1 -
Branch / Tag:
refs/tags/v1.1.8 - Owner: https://github.com/powmarx
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@19b29d54f9e3b6d66ce97b8f582cc255bbe216a1 -
Trigger Event:
push
-
Statement type: