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

ClawPort: Open Source Orchestration for AI Agent Workflows with Self-Healing Cron
ClawPort is an open source orchestration layer for AI agent workflows that auto-configures cron pipelines, self-heals on failures, and lets you test agents directly before they run on schedule.

Local Voice Control Setup for AI Agents on Apple Silicon
Setup local voice control for AI agents using Parakeet STT and Kokoro TTS on Apple Silicon for fast and cloud-independent interactions.

Claudlytics: Self-Hosted Dashboard for Tracking Claude Code Token Usage and Costs
Claudlytics is a Node.js web server that reads Claude Code's local .jsonl session files to provide real-time tracking of token usage and costs. It runs locally on 127.0.0.1 and can be accessed via SSH tunnel for remote servers.

GoModel: A Lightweight Open-Source AI Gateway Written in Go
GoModel is an open-source AI gateway that provides a unified OpenAI-compatible API for multiple providers including OpenAI, Anthropic, Gemini, Groq, xAI, and Ollama. It features a 17MB Docker image, 44x smaller than LiteLLM, with environment-variable-first configuration and built-in observability.