Skip to content

v0.4.0b4 — MCP Server

Pre-release
Pre-release

Choose a tag to compare

@NeelPrime NeelPrime released this 08 Jul 00:19
· 1 commit to main since this release

New in b4: MCP Server

ArbiterX now runs as a local MCP server — Claude Code queries the codebase map directly instead of reading raw files.

MCP Tools Exposed

  • arbiterx_query(query) — Search symbols (97% fewer tokens than reading files)
  • arbiterx_overview() — Project structure + top symbols
  • arbiterx_gate(code, language) — Score code 0-100
  • arbiterx_file_symbols(file_path) — List symbols in a file

Install

pip install arbiterx-gate[mcp]==0.4.0b4
arbiterx init && arbiterx map
/plugin marketplace add NeelPrime/arbiterx
/plugin install arbiterx@arbiterx-marketplace

How It Works

Claude Code auto-starts the MCP server. When it needs to understand code, it calls arbiterx_query (600 tokens) instead of reading 50 files (200K tokens).

Also in this beta

  • Fixed Claude Code hooks format (b3)
  • Fixed plugin manifest (b2)
  • Incremental + parallel indexing (b1)
  • 60+ skip directories for monorepo support