Skip to main content

Local MCP server exposing codepreproc's code-context tools to Claude Code

Project description

codrspot-processor-mcp

A local MCP (Model Context Protocol) client that connects Claude Code to your indexed repositories, giving it code-context retrieval and patch-generation tools for a project registered with a codrspot-processor server.

This package is the client only. It talks to a codrspot-processor server over its HTTP API; it does not include or require running the server itself.

Requirements

  • Python 3.12 (3.13 is not supported)
  • A reachable codrspot-processor server instance and its base URL
  • A credentials.yaml manifest issued by your server operator (used to mint a JWT for each project you register)
  • An OpenAI-compatible LLM endpoint (a local server or OPENAI_API_KEY for a remote provider)

No local Qdrant install is needed — the client keeps its own embedded, file-backed vector store for source chunks.

1. Install

Pick a permanent install location — this becomes CODEPREPROC_HOME. Claude Code's default expectation is %USERPROFILE%\.codepreproc on Windows, or $HOME/.codepreproc on macOS/Linux:

Windows (PowerShell)

mkdir "$env:USERPROFILE\.codepreproc"
cd "$env:USERPROFILE\.codepreproc"
python -m venv .venv
.\.venv\Scripts\Activate.ps1
python -m pip install --upgrade pip
python -m pip install codrspot-processor-mcp

This installs the codepreproc and codepreproc-mcp console scripts into .venv\Scripts\. To upgrade later:

python -m pip install --upgrade codrspot-processor-mcp

macOS/Linux (bash/zsh)

mkdir -p "$HOME/.codepreproc"
cd "$HOME/.codepreproc"
python3 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install codrspot-processor-mcp

This installs the codepreproc and codepreproc-mcp console scripts into .venv/bin/. To upgrade later:

python -m pip install --upgrade codrspot-processor-mcp

Then run codepreproc setup to scaffold CODEPREPROC_HOME (indexes/, logs/, a starter .env) and print the Claude Code mcp.json snippet with the exe path already resolved. Safe to re-run — it never overwrites an existing .env.

2. Configure the environment

Create a .env file in %CODEPREPROC_HOME% ($CODEPREPROC_HOME on macOS/Linux) with at least:

CODEPREPROC_SERVER_URL=https://your-codrspot-processor-server-host:8443
OPENAI_API_KEY=sk-...            # if using a remote LLM policy

Also place the credentials.yaml your server operator gave you at %CODEPREPROC_HOME%\credentials.yaml ($CODEPREPROC_HOME/credentials.yaml on macOS/Linux), or point CODEPREPROC_CREDENTIALS at a different path.

.env is loaded automatically from %CODEPREPROC_HOME% (defaults to %USERPROFILE%\.codepreproc on Windows, $HOME/.codepreproc on macOS/Linux, if unset).

3. Register your project(s)

From inside each repo you want indexed:

Windows (PowerShell)

cd D:\path\to\your\repo
& "$env:USERPROFILE\.codepreproc\.venv\Scripts\codepreproc.exe" init

macOS/Linux (bash/zsh)

cd /path/to/your/repo
"$HOME/.codepreproc/.venv/bin/codepreproc" init

This scans the repo, mints a JWT for it from credentials.yaml, and registers it with your server over the API. Running it again on an already-registered project is a no-op.

4. Register the MCP server in Claude Code

Add this to your Claude Code MCP configuration (project .mcp.json or global settings).

Windows

{
  "mcpServers": {
    "codepreproc": {
      "command": "C:\\Users\\<username>\\.codepreproc\\.venv\\Scripts\\codepreproc-mcp.exe"
    }
  }
}

Replace <username> with your actual Windows username, and adjust the path if you installed into a folder other than %USERPROFILE%\.codepreproc.

macOS/Linux

{
  "mcpServers": {
    "codepreproc": {
      "command": "/home/<username>/.codepreproc/.venv/bin/codepreproc-mcp"
    }
  }
}

Replace <username> with your actual username (on macOS this is typically under /Users/<username>), and adjust the path if you installed into a folder other than $HOME/.codepreproc.

5. Restart Claude Code and verify

Restart Claude Code (or reload the MCP connection), then run:

  • list_projects — should show the project(s) registered in step 3
  • reindex with {"project": "<your-project>", "full": true} — builds the index the first time
  • project_status — confirms the index is healthy and up to date

If the connection fails before it finishes initializing, check %USERPROFILE%\.codepreproc\logs\mcp_server.log ($HOME/.codepreproc/logs/mcp_server.log on macOS/Linux) — set CODEPREPROC_MCP_CONNECTION_VERBOSITY=verbose in .env for more detail.

Available tools

Once connected, Claude Code gets access to these MCP tools:

Projects and index

  • list_projects — list registered projects and index status
  • switch_project — set the active project for the session
  • reindex — run a full or incremental reindex
  • project_status — report index health and git sync state

Code changes

  • analyze_request — turn a natural-language prompt into a validated patch
  • preview_semantic_plan — inspect the cached edit plan for a task
  • preview_patch — view the generated patch as a unified diff
  • validate_patch — check a patch's structural validity
  • disambiguate_region — resolve an ambiguous edit target
  • apply_patch — apply a validated patch to the repo

Filesystem reorganization

  • analyze_filesystem_reorg — plan file/directory moves and renames
  • preview_filesystem_plan — inspect a cached reorg plan
  • apply_filesystem_plan — apply a reorg plan

Search and documentation

  • search_context — hybrid semantic search over the indexed repo
  • generate_document — generate a Markdown document from retrieved context

Snippets

  • list_snippets — list available code snippets/templates
  • assemble_from_snippets — generate new code from templates for a target framework

LLM usage

  • usage_report — summarize accumulated LLM cost/usage
  • set_llm_policy — override the LLM routing policy for the session

Useful environment variables

  • CODEPREPROC_HOME
  • CODEPREPROC_SERVER_URL
  • CODEPREPROC_CREDENTIALS
  • CODEPREPROC_MCP_CONNECTION_VERBOSITY (off, basic, verbose)
  • CODEPREPROC_DEBUG

License

See LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

codrspot_processor_mcp-0.1.7.tar.gz (171.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

codrspot_processor_mcp-0.1.7-py3-none-any.whl (207.1 kB view details)

Uploaded Python 3

File details

Details for the file codrspot_processor_mcp-0.1.7.tar.gz.

File metadata

  • Download URL: codrspot_processor_mcp-0.1.7.tar.gz
  • Upload date:
  • Size: 171.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.14

File hashes

Hashes for codrspot_processor_mcp-0.1.7.tar.gz
Algorithm Hash digest
SHA256 a613d218c125e3236bed83a68a209c49f6e79f3e28028a22519db76fc6188005
MD5 6c05ac597476589003c76db1b3403fa0
BLAKE2b-256 32a927d4faf839fa7ac6c69e4be16ec7711a39596b87c3c5c32931a622a899f2

See more details on using hashes here.

File details

Details for the file codrspot_processor_mcp-0.1.7-py3-none-any.whl.

File metadata

File hashes

Hashes for codrspot_processor_mcp-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 392254c473ed9c1356d804aa4cdae5b973561a9b0463b2c6f24dec66bbec460e
MD5 eaa857293e248a769284425ba8eee88b
BLAKE2b-256 84ed498eee2dfb131a0e6c3ee7a9276d6291697cb8effc7cc21cd56d3e5b72da

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page