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

TRELLIS.2 Image-to-3D Ported to Run Natively on Apple Silicon
A developer has ported Microsoft's 4B parameter TRELLIS.2 image-to-3D model to run natively on Apple Silicon via PyTorch MPS, replacing CUDA-specific operations with pure-PyTorch alternatives. The port generates ~400K vertex meshes from single photos in about 3.5 minutes on M4 Pro with 24GB memory.

ThumbGate Implements Tsinghua's Natural-Language Agent Harness Pattern for AI Safety
The open-source tool ThumbGate implements the Natural-Language Agent Harness pattern from Tsinghua's NLAH paper, mapping four components: contracts to prevention rules from thumbs-down feedback, verification gates to PreToolUse hooks, durable state to SQLite+FTS5 lesson database, and adapters to MCP server adapters for multiple AI coding agents.

Approval Boundary Tool for Claude Code Repository Work
A developer built an approval boundary tool that adds a review step before local execution when using Claude Code for repository work. The tool follows a loop: see the plan first, approve once, let the run happen locally, and keep proof afterward.

LORE.md: An Open Standard for Extracting Structured Knowledge from AI Conversations
LORE.md is an open standard for extracting durable knowledge from AI conversations into a structured format. It captures decisions with rationale, insights, patterns, open questions, and next steps, with everything linking across sessions.