claudeers.
// MCP Servers

VinvAI

Runs, benchmarks and optimizes your agent-written Python code until it's production-ready. Zero-edit runtime tracing joins every call to source, builds one c…

// MCP Servers[ cli ][ api ][ desktop ][ mobile ][ claude ]#claude#agent-verification#ai-agents#ai-code-review#claude-code#code-graph#coding-agent#cursor#mcp-serversApache-2.0$open-sourceupdated 26 days ago
Actively maintained
100/100
last commit about 10 hours ago
last release none
releases 0
open issues 14
// star history+1 this week (+2.6%)

Install with your AI

Paste into Claude Code, Cursor, or any agent — it reads the repo and wires the tool into your project.

Install and set up VinvAI (git-clone project) into my current project.
Found on https://claudeers.com/vinvai
Repo: https://github.com/VinvAI/VinvAI
Homepage/docs: https://vinv.ai/
Detected install method: git-clone → git clone https://github.com/VinvAI/VinvAI
Category: mcp-servers. Platforms: cli, api, desktop, mobile.
Read the repo's README for exact setup and env vars, then install it and wire it into my project.

Claudeers Health Verdict:
active; community-verified: false. Confirm the source before running anything.
// or clone
git clone https://github.com/VinvAI/VinvAI

// compatibility

Platformscli, api, desktop, mobile
Operating systems
AI compatibilityclaude
LicenseApache-2.0
Pricingopen-source
LanguagePython
Vinv — runs, benchmarks and optimizes your agent-written Python code until it's production-ready.



Vinv runs, benchmarks and optimizes your agent-written Python code until it's production-ready.

Coding agents know your code. They have never understood how it behaves when it runs. Vinv's context bandits build one context graph — your code, your traces, and the metrics derived from them — and serve it to your agent.

Judgement comes from what the code actually did, not from what the agent claims.



From cold repo to production-ready: Vinv's nine stages around your coding agent — bring up, trace, index, map, exercise, find, dispatch, verify, learn — each annotated with what it does and which engine runs it

One command starts it. Vinv drives the other eight stages — every arrow is evidence, not a guess.



Install: Open VSX · one-click, pick your editor

Or straight from your editor's CLI:

EditorCommand
VS Codecode --install-extension VinvAI.VinvAI
Cursorcursor --install-extension VinvAI.VinvAI
Windsurfwindsurf --install-extension VinvAI.VinvAI
VSCodiumcodium --install-extension VinvAI.VinvAI
Traetrae --install-extension VinvAI.VinvAI
VS Code Insiderscode-insiders --install-extension VinvAI.VinvAI

First run builds the engines (~4 min: compiles the Rust index, fetches a one-time ~500 MB local embedding model). Needs uv and Rust. First trace about a minute after that.

git clone https://github.com/VinvAI/VinvAI ~/.vinv/engines && cd ~/.vinv/engines && ./install.sh
Runtime tracing for AI coding agents: Vinv installs, discovers and runs every service under tracing, catches a real bug, dispatches the fix, and verifies it — on its own repo
The whole loop on Vinv's own repo: install → discover → trace → catch a real bug → dispatch → verified fix, zero clicks.

The problem

84% of developers now use or plan to use AI coding tools. More of them actively distrust the output (46%) than trust it (33%) — and distrust nearly doubled in a year (Stack Overflow 2025, 49k developers). You know why: the agent edits the wrong handler, invents return shapes, then grades its own homework while the server won't even start.

Or it enters the doom loop — test fails, agent edits the same function, test fails the same way, agent edits it again, burning your context window on "let me verify." Anthropic's own research documents agents "stuck in loops, repeating the same failed approach" when they lack codebase context.

Both failures have one root cause: the agent has never watched your code run. It argues from static text.

Case study: commodity models out-fix frontier ones

Vinv found four bugs and one performance problem in fastapi/full-stack-fastapi-template (44k★). We handed all five to each setup — same issues, same prompts, one trial per condition, Vinv grading every run:

SetupFixed
Cheap commodity model + Vinv context4 bugs + 1 optimization
Frontier model, working blind1 bug
Cheap commodity model, working blindnothing

This is a demonstration, not a benchmark — five issues, one repo, one trial per condition. We're publishing it because it's checkable, not because n=5 settles anything.

The claim isn't a model ranking — blind, the commodity model scored zero. The claim is that a model holding the failing frame, the caller chain, and the real argument values beats a stronger model guessing from static code. The evidence is what moved, not the weights.

Why the pass rate means something: Vinv grades, and it doesn't take the agent's word. Acceptance tests are written before the fix and the agent never sees them. Any change that alters observable output is reverted automatically, even when it's faster: the behavior replay has to come back byte-identical, and the paired-bootstrap 95% CI on a speedup has to exclude zero.

And the loop keeps finding real ones. On the same pristine template, the optimization loop later surfaced — and statistically proved — a fix nobody planted: the app's default database pool (SQLAlchemy's 5+10) makes requests queue for connection checkouts under concurrent load, so a 7-row indexed lookup measured 22× the typical symbol's cost. Pool sized to the worker concurrency: sustained-load median 75.6ms → 41.2ms — 45.4% faster, 95% CI [36.3%, 45.8%] — responses byte-identical. The same engine auto-reverted two earlier attempts whose measurement windows couldn't certify the win; the accept only landed when the evidence did.

Vinv optimization loop on the FastAPI template: detects connection-pool starvation from real traces, dispatches the pool-sizing fix, proves 45.4% median improvement with a paired-bootstrap 95% CI, and records the episode with its reverted attempts in Findings

If any of these is your open tab

SymptomWhat Vinv does about it
"claude code says done but tests fail"independent verification: replayed start, live port, acceptance tests the agent never sees
"cursor agent stuck in a loop"Vinv notices the agent repeating itself, forces a different approach, and hands you a verdict instead of burning tokens
"how to test fastapi endpoints automatically"the behavior exerciser drives every endpoint with schema/boundary/negative/auth inputs, banks every response as a regression case
"AI broke code that was working"byte-identical behavior replay gates every change; one-click revert of everything an episode touched
"find memory leak python without profiler"names the functions holding memory that never got released, from real runs — no profiler, no instrumentation
"why is my api slow"per-call flamegraphs from live traffic + Pareto hotspots + CI-gated optimization episodes

What Vinv does

Give your coding agent runtime context — ten capabilities, one loop:

  • Semantic code search — ask by meaning, get ranked symbols with def bodies and line numbers, embedded by a local model (no cloud keys).
    semantic code search MCP in action
  • Code Graph — a persistent map of every symbol and call edge, updated incrementally on save, with a live runtime overlay.
    interactive Code Graph
  • Runtime tracing — zero-edit runtime tracing for AI coding agents: timing, memory, args, returns, errors — per call, joined to source.
    zero-edit Python tracing
  • Rank suspects — on any failure, symbols ranked by fault-localization score over real pass/fail requests, error messages attached.
    fault-ranked suspects
  • Verified fixes — verify AI-generated code actually works: replayed start, live port, acceptance tests the agent never sees. One click reverts everything an episode touched.
    independent fix verification
  • Ask Vinv — ask anything about your running system in plain English; every answer cites the exact trace spans and source lines it came from, and a deterministic critic blocks any claim the evidence can't back — grounded Q&A, not confident guessing.
  • Behavior exerciser (new) — Vinv doesn't wait for traffic: it drives every endpoint itself — schema-derived valid/boundary/negative inputs, values mined from real traces, multi-step auth scenarios — picks strategies with a Thompson-sampling bandit rewarded by oracle violations first and new coverage only as a bonus, and turns every response into a permanent regression case.
  • Journey (new) — one walkthrough of everything verified: every service, then every endpoint's call tree, latency flamegraph, and the exact inputs → outputs exercised — with a form to add your own test inputs that the engine replays forever after.
    Vinv Journey walkthrough: overview, then every endpoint's call tree, latency flamegraph, and exercised inputs and outputs, stepped with Next
  • Auto-Pilot & the red ring — one click drives discover → set up → trace → exercise → fix → verify until green or budget; when new trace errors land, the fix episode is already dispatched by the time you see the red ring in the graph. The budget is yours: set attempts per service in Configure, and when a run exhausts them Vinv asks whether to grant more instead of quietly giving up.
  • Agent babysitting — a doom-loop guard (token-set self-similarity) catches a repeating agent, an adaptive silence watchdog catches a hung one, and "Dispute a Verified Fix" keeps even the verifier accountable.
  • Findings (new) — what Vinv found and what it fixed, with the statistical evidence: issue clusters, optimization episodes with paired-bootstrap confidence intervals, regression diff kinds, and a machine-readable findings.json your agent can consume directly.
    Vinv Findings tour: issue clusters, optimization episodes with 95% confidence intervals, regression replay kinds, latency profile per endpoint, and the state ledger

Honest scope: Python backends first — other stacks get the index, graph, and QnA, but no runtime evidence yet (TS & Go next).

Why agents don't reward-hack under Vinv

Vinv ties every runtime trace to the exact code segment that produced it and hands your agent a context graph built from that join — so the agent argues from evidence, not vibes. And when the agent claims victory, Vinv doesn't take its word:

  • Acceptance tests are authored before the fix and never shown to the agent — it can't train to the test.
  • A "faster" fix that changes any observable output is auto-reverted — the behavior suite must replay byte-identical, and the speedup's paired-bootstrap 95% CI must exclude zero. Faster-but-wrong never lands.
  • Deliberate 4xx rejections aren't "errors" to fix — the defect classifier knows the difference between a service saying no correctly and a service breaking, so the agent is never handed a fake goal it can only game.
  • When two attempts stop making progress, a Nash-bargaining stall judge decides — continue only if both an explorer stance and an auditor stance strictly prefer it to asking you. Otherwise you get a judgment panel, not a token bonfire.

The same run, in detail

Everything above came from one all-local pass on that template, on an M-series MacBook:

  • Indexed 855 symbols across 151 files with 516 call edges in 27.6s — cold, from clone.
  • Semantic search: 5/6 natural questions hit the right symbol in the top 5, p50 64ms:
You askVinv answers
"where are JWT access tokens created"create_access_token
"password hashing"verify_password
"database session dependency"get_db
  • The backend then ran under Vinv's zero-edit tracer inside Cursor desktop, extension live — no code changes to the template.
Vinv running end to end on the FastAPI full-stack template: install, code graph of 855 symbols, semantic code search hits, runtime trace hotspots, rank_suspects naming the failing frame, and verified probes

The actual run, captured frame by frame: install → 855-symbol graph → search hits → trace hotspots → the failing frame named → verified.

Then we ran its backend under Vinv's zero-edit tracer (inside Cursor desktop, DB deliberately down) and hit it with real traffic. From one run, Vinv produced:

What Vinv sawResult
Hotspots (per-symbol, from live spans)login_access_token 12× · 8.1ms avg → authenticateget_user_by_email 22×
Failing frame, named exactlycrud.get_user_by_email — 22× sqlalchemy.exc.OperationalError
Caller chain for every failurelogin_access_token → authenticate → get_user_by_email
Trace274 events, 0 unparseable, finalized on SIGTERM

Your agent sees "500". Vinv hands it the exact failing function, the error type, and the chain that led there — before it opens a single file.

Bonus: this very demo caught a real Vinv bug (Python 3.14 broke OTel's contrib loader; the error was being swallowed). We fixed it the same day — that's the loop working on ourselves.

Then we let the exerciser loose on the same template

Traffic only shows you the code paths users happen to hit. The behavior exerciser drives the rest — same repo, same laptop, one run:

MetricTraffic onlyExercised
Endpoints executed0 / 2323 / 23
Endpoints with symbol coverage6 → 16 / 23 (auth sweep)
Symbols covered18 → 37 / 44
Regression cases banked0125 (replayable forever)

The authenticated sweep (every endpoint replayed under credentials the login scenario captured, with freshly created resource IDs fed to the by-id endpoints) surfaced four real bugs that anonymous traffic can never reach:

  1. GET /api/v1/users/HTTP 500 — an invalid email stored by an unvalidated private endpoint poisons response serialization
  2. POST /api/v1/private/users/IntegrityError escapes as a 500email: str instead of EmailStr, no duplicate guard
  3. POST /api/v1/utils/test-email/HTTP 500assert settings.emails_enabled crashes instead of degrading
  4. POST /api/v1/password-recovery-html-content/{email}connection killed — unsanitized header rendering

The harness then fixed all four, and the regression suite now distinguishes your code regressed from the test engine's own leftover data changed the world (the state ledger) — so a re-run doesn't cry wolf. Phantom perf regressions are gone too: a latency diff must survive a median of 5 replays before it's reported.

Vinv Journey deep-dive on POST /users/signup: call tree with runtime counts and errors, latency flamegraph, and all 15 exercised inputs with their outputs
One endpoint after the run: call tree with live runtime, latency flamegraph, and every input Vinv drove with the output it got back.

Works with your agent

Vinv is an MCP server for Claude Code and Cursor — and every other MCP client you already use. One command (Register Vinv MCP in Agent Tools) writes both servers into every agent it detects:

AgentFix dispatchMCP tools
Claude Code✅ auto
Cursor (CLI + chat)✅ auto
Codex CLI✅ auto
Gemini CLI✅ manual
Copilot Chat (VS Code)✅ auto
Windsurf Cascade✅ auto
Where the config lands, per client — and how to verify

Registration is idempotent and never commits secrets. Both servers (vinv-index, vinv-runtime) launch over stdio via the editor's own runtime.

  • Claude Code~/.claude.json, project-local scope (no trust prompt). Verify: claude mcp list shows vinv-index and vinv-runtime.
  • Cursor<repo>/.cursor/mcp.json. Verify: Settings → MCP shows both servers green.
  • Codex CLI~/.codex/config.toml under [mcp_servers.vinv-index] / [mcp_servers.vinv-runtime].
  • Copilot Chat — native VS Code MCP provider (auto), .vscode/mcp.json on older builds.
  • Windsurf Cascade~/.codeium/windsurf/mcp_config.json.
  • Gemini CLI — dispatch works out of the box; for MCP tools, add the same two stdio servers to ~/.gemini/settings.json.

Your agent is also Vinv's only LLM — every analysis step routes through the coding-agent CLI you already pay for. No provider keys, no model picker.

Agent without Vinv vs with Vinv

Agent aloneAgent + Vinv
Finding codegreps and guesses filesranked symbols with line numbers, by meaning
"Done"claims it, grades its own homeworkreplayed start, live port, unseen acceptance tests
Memoryforgets every sessionpersistent index + graph, updated on save
Runtimecan't see itreal traces, values, flamegraphs per call
Debuggingreads source, speculatesfault-ranked suspects with real error messages
Bad fixyou diff and prayone-click revert of everything the episode touched
API testingwrites tests it then grades itselfexercises every endpoint, banks each response as an unseen regression case
Perf claims"should be faster now"paired-bootstrap 95% CI must exclude zero, behavior byte-identical, or auto-revert
Test datapollutes your dev DB and forgetsstate ledger: created resources tracked, torn down via your own API, drift labeled
Costburns tokens re-exploringevidence pack composed once, locally

Proven on itself

Vinv's release gate is Vinv — these numbers come from running the loop on this repository:

MetricResult
Index4,036 symbols
Searchfile hit@10 0.90 · symbol MRR 0.51 · p50 81ms
Crash recoveryindexer, embedder, and traced service all kill-tested mid-run
Self-found waste83% duplicate compute found → now cached
Retrieval tuningoff-policy evaluation (doubly-robust, BCa bootstrap) runs continuously over logged queries and promotes nothing that can't clear a 95% lower bound above zero — to date it has declined every candidate
Test suite1,738 tests green (1,186 Python · 552 extension)

How it works

flowchart LR
  T[Trace] --> I[Index] --> S[Serve MCP] --> V[Verify] --> L[Learn] --> T
  1. Trace — run your Python service under the bundled tracer: no SDK, no code changes.
  2. Index — every function embedded locally into a semantic index + call graph.
  3. Serve — two MCP servers hand the evidence to your agent.
  4. Verify — replayed start, live port, acceptance tests generated before the fix.
  5. Learn — propensity-logged decisions; retrieval updates only on off-policy-evaluation wins.
🧠 The algorithms, named (for the skeptics)

No black boxes — every decision Vinv makes has a published method behind it, and each one exists to keep the loop honest, not clever:

DecisionAlgorithmWhy
Which input strategy to try next, per endpointThompson sampling over Beta posteriors; reward = oracle violations, with new coverage worth a 0.25 bonus so exploring stays subordinate to finding; posteriors persist across runs with 50% evidence decayexplores boundary/negative/auth inputs where they pay, without a hand-tuned schedule — the loop can't be captured by a cheap coverage treadmill, and old lessons expire instead of ossifying
Accept or revert an optimizationPaired bootstrap 95% CI on relative improvement and byte-identical behavior replay"faster" must be statistically real and observably harmless
Behavioral invariantsDaikon-style dynamic invariants, support ≥ 5, zero counterexamples, Laplace (s+1)/(n+2) confidenceproperties earn their confidence from evidence, not assertion
Memory-leak suspectsTheil–Sen slope over per-session retention (robust to 29% outliers)one noisy session can't fabricate or hide a leak
Cache opportunitiesargument-hash distinctness × time share, Pareto-relative — no absolute thresholds"expensive" is defined by your app's trace, 5ms service or 5s batch job
Hung harness detectionφ-accrual-inspired adaptive silence watchdog (cadence-relative, startup grace)a slow run isn't killed; a dead one doesn't spin
Stall deadlock-breakingNash-bargaining unanimity: continue only if explorer and auditor stances both beat escalationautonomy exactly when it's justified; a human panel when it's not
Retrieval config promotionOff-policy evaluation gates: promoted only on CI-backed wins over logged propensitiesthe learner can't grade its own homework either
Fault localizationspectrum-based suspect ranking over real pass/fail requestssuspects come from executions, not embeddings

The whole test ontology — what exists, where it lives on disk, and the walk order an agent follows to know it covered everything — is one document: docs/testing-ontology.md.

Deeper: the context graph, Auto-Pilot, and repo layout

Vinv indexes the code and generates — from your own run — the traces and the metrics derived from them, then ties all three to the exact function that handled each request. The artefacts are commodities; the join is not. Auto-Pilot drives the whole loop unaided: discover services → set up via your agent → start under tracing → probe → fix → re-verify, until green or budget. Layout: extension/ (editor UI + MCP servers), index/ (Rust semantic index), embedder/ (local CodeRankEmbed sidecar), tracelens/ (zero-edit tracer), identification/ (trace↔source join), handbook/ · bringup/ · goal/ (discovery & episodes), tests/e2e/ (planted-bug golden test). Python engines are one uv workspace.

After install: the five things to try

  1. Exercise your APIexerciser plan <repo> && exerciser run <repo> --base-url http://127.0.0.1:PORT (or let Auto-Pilot's exercise phase do it). An environment canary first dry-runs your login chains and tells you loudly if the database was reset or credentials unseeded — no more silently-401 runs.
  2. Walk everything — Command Palette → "Vinv: Open Journey". Overview first (services, coverage, open issues), then Next/ through every endpoint: call tree with live runtime, flamegraph, and the exact inputs → outputs driven. Hover anything cryptic — every marker explains itself in plain language.
  3. Add your own test input — on any Journey endpoint step, fill body/params/expected status and hit Add input. It lands in the same plan layer the AI-authored scenarios use, runs with the endpoint's auth setup on the next exercise, and becomes a permanent regression case.
  4. See what got fixed — Command Palette → "Vinv: Open Findings": issue clusters, optimization episodes with their confidence intervals, regression diffs by kind, latency profile, cleanup ledger. The tab's backing file .vinv/reports/findings.json is the same data, machine-readable — point your agent at it.
  5. Regress after any changeexerciser regress <repo> --base-url … replays all banked cases (re-capturing fresh credentials itself) and reports behavior / contract / perf / environment diffs separately, so environment drift never masquerades as a code regression.
  6. Hunt waste on demand"Vinv: Optimize Latency Hotspots", "Analyze Memory Trends" (Theil–Sen leak suspects), and "Analyze Cache Opportunities" (recomputed-work finder) each turn one command into an evidence-seeded fix episode — accepted only if the paired-bootstrap CI clears and behavior stays byte-identical.

MCP tools reference

10 tools, 19 capabilities — few names on purpose (agents pick better from short menus; the session tool multiplexes)

vinv-index — the codebase and the session:

ToolReturns
vinv_queryRanked symbols with paths + a decision id — any by-meaning search, before grep
vinv_feedbackack — reward −1..1 after acting on results; trains retrieval
vinv_session10 actions in one tool — read: trajectory · status · issues · hotspots · memory_trends · cache_candidates; act: fix (dispatch an evidence-seeded episode) · run_sweep · set_goal · set_budget — your agent can drive the whole verify/optimize loop from chat

vinv-runtime — the captured runs (read-only, provenance-stamped):

ToolReturns
rank_suspectsFault-ranked symbols over pass/fail requests, real errors attached — first, on any failure
values_ofObserved argument/return types, null-rates, ranges
sliceObserved caller chain from request root, values at each frame
coverage_ofWhat ran, how often, ok/error, timing
callers_of / blast_radius / why_did_this_runObserved callers · transitive impact · entry-point paths

FAQ

Do I need my own API keys? No. Vinv runs everything locally. The semantic index and code embedder run on your machine without requiring any provider keys. Your agent CLI (like Claude Code or Cursor) handles its own LLM communication using the authentication you already set up.
Is there any telemetry or data collection? No. Vinv is 100% local with zero telemetry. It operates entirely on your machine, storing per-repo state in `.vinv/` and per-machine state in `~/.vinv/`. Sensitive data in traces is redacted and never sent anywhere.
Why is the first run slow? (Build time) The first run takes around 4 minutes because Vinv needs to compile the Rust index and fetch the ~500 MB local embedding model. Subsequent runs and traces will start in seconds.
Does Vinv modify my code? No. Vinv uses a zero-edit tracer. It instruments your Python backend at runtime without requiring any SDK integrations, decorators, or modifications to your source code.
Which languages are supported? Currently, Vinv fully supports Python backends with runtime tracing, semantic code search, and verified fixes. TypeScript and Go support are coming next. Other stacks can still use the index, graph, and QnA features.
How does it know if a fix worked? Vinv generates acceptance tests before the fix and hides them from the agent. It runs these tests alongside checking the live port and verifying that any observable behavior (other than the bug fix) remains byte-identical.
Which editors and coding agents work? Editors: VS Code, Cursor, Windsurf, VSCodium, Trae, VS Code Insiders. Agents it drives: Claude Code, Cursor CLI, Codex CLI, Gemini CLI, Copilot Chat, Windsurf Cascade. See [Works with your agent](#works-with-your-agent).
Is it really free and open source? Yes — [Apache 2.0](https://github.com/VinvAI/VinvAI/blob/HEAD/LICENSE), every engine builds from source in this repo.

Privacy

  • Everything on your machine — per-repo state in .vinv/ (auto-gitignored), per-machine in ~/.vinv/. No account, no API keys, no telemetry — none.
  • The only download is the embedding model (Hugging Face, once, ~500 MB); everything else builds from this repo.
  • Traces store bounded summaries, not raw values; sensitive parameter names (password, token, api_key, …) are redacted, never captured.
  • The only LLM Vinv talks to is the coding-agent CLI you configured, through its own auth.

Contributing & license

See CONTRIBUTING.mduv sync, cargo build in index/, npm install && npm run check in extension/, keep tests/e2e/planted_bug_golden/run.py green. Good first issues are labeled. By taking part you agree to our Code of Conduct; to report a vulnerability, see SECURITY.md. Apache License 2.0 © 2026 VinvAI.

If Vinv caught something your agent missed — leave a review on Open VSX and ⭐ star this repo.

vinv.ai · Open VSX · LinkedIn · [email protected] · Python first, TS & Go next · Context beats model size.

// faq

What is VinvAI?

Runs, benchmarks and optimizes your agent-written Python code until it's production-ready. Zero-edit runtime tracing joins every call to source, builds one context graph, and serves it to Claude Code and Cursor over MCP — with every fix verified against tests the agent never sees.. It is open-source on GitHub.

Is VinvAI free to use?

VinvAI is open-source under the Apache-2.0 license, so it is free to use.

What category does VinvAI belong to?

VinvAI is listed under mcp-servers in the Claudeers registry of Claude-compatible tools.

2 views
40 stars
unclaimed
updated 26 days ago

// embed badge

VinvAI on Claudeers
[![Claudeers](https://claudeers.com/api/badge/vinvai.svg)](https://claudeers.com/vinvai)

// retro hit counter

VinvAI hit counter
[![Hits](https://claudeers.com/api/counter/vinvai.svg)](https://claudeers.com/vinvai)

// reviews

// guestbook

0/500

// related in MCP Servers

🔓

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete…

// mcp-serversf/HTML167,135NOASSERTION[ claude ]
🔓

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Gemini CLI & Hermes Agent. Only official website: ccswitch.io

// mcp-serversfarion1231/Rust127,274MIT[ claude ]
🔓

An open-source AI agent that brings the power of Gemini directly into your terminal.

// mcp-serversgoogle-gemini/TypeScript106,524Apache-2.0[ claude ]
🔓

🪨 why use many token when few token do trick — Claude Code skill that cuts 65% of tokens by talking like caveman

// mcp-serversJuliusBrussee/JavaScript100,343MIT[ claude ]
→ see how VinvAI connects across the ecosystem