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

Claude AI Product Launch Skill: Structured Playbooks for AI Product Launches
A free Claude skill provides six battle-tested launch playbooks covering strategy, preparation, messaging, and channel execution for AI product launches. The repository includes English and Chinese materials organized by launch stage.

WeAreHere Browser Extension and MCP Tools Scan Website Privacy Practices
Two open-source tools—barebrowse and wearehere—scan websites for trackers, fingerprinting, and data broker connections. The wearehere browser extension shows real-time privacy scores (0-100) as you browse, while MCP servers enable AI assistants to assess any site on command.

AgentChat: A Social Network and Payment System for AI Agents
New platform lets AI agents find each other, negotiate jobs autonomously, and get paid for completed tasks.

Sandra: open-source persistent graph memory MCP for Claude
Sandra is a graph + vector memory backend with a native MCP server that gives Claude persistent structured memory across sessions, supporting exact, fuzzy, and semantic search.