Ask Cat › AI Tool Summary › Repowise
Feed a Public Repo to Claude Code Without Burning Context: Repowise's Free MCP Setup and Its Four Limits
Article last updated:2026-09-07
When Claude Code or Cursor works on an unfamiliar codebase, the expensive part is rarely the reasoning. It is the agent grepping, opening and re-opening files to reconstruct context it should have been handed.
Repowise’s answer: index the repo once and serve it over MCP. The published benchmark figures in its official guide:
- 2,391 tokens to load context instead of 64,039 — 96% fewer, roughly 27×
- 89% fewer file reads across paired benchmarks at answer parity
- 70% fewer tool calls on the flask48 and sklearn48 suites
- Ten task-shaped MCP tools over one endpoint, open source under AGPL-3.0
And for public repos, the free tier covers it. Here is the flow and where free stops. Verified 2026-09-07.
1. The problem it targets
The guide states it plainly: entity-by-entity tools force the model to do retrieval itself — search, open, scroll, repeat. That produces four costs:
- Fragmented context: the agent sees file fragments and never the whole picture.
- Compounding token cost: raw exploration of a single task can spend 64,039 tokens just loading context, before any reasoning.
- Retries multiply reads: a missed grep means another search, another open, another scroll.
- No enrichment: raw file reads carry no ownership, no history, no risk and no “why”.
2. Four steps, per the official pipeline
| Step | What happens |
|---|---|
| Index | Repowise parses the repo into a graph, reads git history and builds the wiki. Code is processed transiently, never persisted |
| Connect | Register the MCP endpoint in Claude Code, Cursor, Cline, Codex or any MCP client — one URL, ten tools |
| Call | The agent calls a task-shaped tool and gets a curated answer in one round-trip instead of grepping and re-reading |
| Trust | Every response carries a _meta staleness envelope, so the agent knows when the index is current and when to verify |
The fourth step is the one worth copying: it does not pretend the index is always right; it makes freshness part of the response and lets the agent judge. The classic failure mode for cached context is treating stale data as truth, and this design makes that risk visible.
Endpoint registration differs by client (Claude Code, Cursor, Cline and Codex each configure MCP in their own place) and the official docs cover each; the concept is that one URL is all you register.
3. The four free-tier ceilings
If you plan to run public repos on free, know these (all listed on the pricing page):
- Public repo indexing up to 250 MB. Above that you need Pro (5 GB).
- 500 commit analysis limit. Free excludes full commit history, so the git intelligence — hotspots, ownership, bus factor — is built from the most recent 500 commits.
- 10 AI answers per month. This is the hard one, though deterministic features (health score, dependency graph, hotspots, dead code, ownership) never consume it — only real AI answers do.
- No push-triggered auto-sync. Free refreshes weekly, with the health badge updating alongside, rather than rebuilding on every push.
One more that surprises people: repos below 1,000 stars get no written explanations on free. Your own small project gets the index, graphs and search, but not the auto-written prose.
4. Deciding whether to upgrade
Three questions, no guessing required:
- Will you exceed 10 AI answers a month? If so, Pro’s US$15 includes US$5 of model credit, making the software itself effectively US$10.
- Do you need private repos? Free is public-only; private indexing via the GitHub App is Pro.
- Do you need updates immediately after a push? Weekly is fine for a stable project and not fine for a fast-moving one.
Full plan breakdown: US$5 of Repowise’s US$15 plan is model credit.
5. Two caveats
- Saving context tokens is not saving everything. The 96% applies to loading context; the reasoning still costs what it costs. The real payoff shows up in long sessions where the agent no longer re-greps each time.
- Source is processed transiently and not persisted (as stated), and the product is self-hostable. But if your organisation has a written rule against source passing through a third-party service, the self-hosted AGPL-3.0 route is the compliant one, not the hosted tier.
Sources: Repowise’s AI Context & MCP guide (by Raghav Chamadiya, marked updated July 2026) and its pricing page, read directly on 2026-09-07. Every benchmark figure (96%, 89%, 70%, 2,391 vs 64,039) is the vendor’s own published paired-run result; we did not reproduce them. Plan summary also on our Repowise tool page.
What Amo and Pimi think
目前官網標示是這樣:單人想省錢就用免費額度自架AGPL版本,10次AI問答用完就等下個月;真的要常態用託管版,Pro的US$15/月(實付約US$10)比較合理,Teams的US$60/月起跳除非團隊真的滿3人在用不然不划算。這筆資料只查過一次官網,還沒三邊交叉,細節建議下單前自己再核一次。
Let's take a look at these
- Repowise Comprehensive Introduction: Pricing, Features, and Actual Limitations
- Repowise Is the free quota enough?
- Repowise Alternatives
- Comprehensive Free Quota List for All Tools

