Argyph: A Single MCP Server for Claude Code with 19 Structured Code Understanding Tools

If you've used Claude Code on a real codebase, you've likely hit the wall where it greps blindly or pulls whole files into context. Argyph is a single MCP server that indexes your repository and exposes 19 tools to the agent — returning bounded spans instead of dumping entire files. It runs entirely on your machine with no API key needed.
Setup
Add it in one line:
claude mcp add argyph -- npx argyph@latestThen in any repo:
argyph initWhat It Does
- Structural queries:
find_definition,find_references,get_callers,get_callees, call graphs, etc. — all returning pointed spans, not full files. - Semantic search: built-in vector store with a bundled local embedding model. Semantic search builds in the background on first run.
- Token-budgeted repo packing: pack relevant context within a token budget for the agent.
- Read-only: never edits, commits, or executes code.
- Speed: ready in under a second on a previously-indexed repo. First run: structural queries within seconds; semantic search builds asynchronously.
- Feedback: tools return an
index_coveragefield so the agent knows what's available.
Why It Matters
Argyph replaces the handful of separate MCP servers people usually wire up — grep, embeddings, symbol search, repomix — with one. No external API key required for full functionality; nothing leaves your laptop. Embedded vector store and local embedding model are included.
For developers running Claude Code on large, real-world codebases, this is a practical way to give the agent fast, structured, and semantic context without blowing context windows.
GitHub: https://github.com/Ezzy1630/argyph
📖 Read the full source: r/ClaudeAI
👀 See Also

My OpenClaw Got a Physical Body: Robot Dog with Eyes, Legs, and Voice

Free OpenClaw Cost Calculator Shows Configuration Expenses Before Execution
A developer built a free, open-source browser tool that calculates OpenClaw configuration costs before running, breaking down expenses by primary model, fallback chains, heartbeat burn, and billing mode.

Claude Code Adds Auto Mode for Permission Decisions
Claude Code now has an auto mode that lets Claude handle permission decisions instead of requiring manual approval for every file write and bash command. This mode includes safeguards that check each action before it runs, with a classifier reviewing tool calls for potentially destructive actions.

Crime Team: Multi-Agent Orchestrator for OpenClaw — Parallel Code Review with Coder Agent
Crime Team v0.1 runs multiple specialist OpenClaw agents in parallel for code review, then integrates findings. Includes per-agent models, a coder agent that applies changes, and a re-audit loop. CLI + GUI.