What Anthropic Actually Released
Why "Local Context" Is Different From "Longer Context"
How the Pieces Fit
- Run AnythingLLM locally, or on a small VPS, and point it at the repositories and docs you want the agent to know about.
- Expose that AnythingLLM workspace as an MCP server. The community has writeups on this; treat the specifics as version-dependent.
- Connect your agent client (Claude Code, an IDE plugin, or a custom CLI) to that MCP server.
- Run the Anthropic reference harness, or fork it, against the same workspace.
What Indie Builders Should Care About
- Privacy by construction. Your code does not leave your machine. That is a feature for any indie builder working on something they plan to sell.
- Swappable parts. AnythingLLM is not the only option. The Anthropic harness is not the only agent. MCP is the contract that lets you swap parts without rewriting your workflow.
- A real reference implementation. You can read the harness source, run it, and learn from it without depending on a vendor blog post.
- Treating this as production-ready on day one. It is a reference. Read the security notes, audit the network calls, and do not point it at your production database until you have done that work.
A Quieter Take
Sources
- Anthropic, defending-code-reference-harness on GitHub: https://github.com/anthropics/defending-code-reference-harness
- AnythingLLM: https://github.com/Mintplex-Labs/anything-llm