Vibgrate AI Context
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Vibgrate AI ContextShow me the impact of changing the authentication service"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
vg answers two questions for any repo:
What is this codebase? — A deterministic code graph: call trees, import paths, impact surfaces, dependency facts.
How far behind is it? — A ranked DriftScore (0–100) with runtime/framework lag, dependency age and EOL proximity, and a prioritised fix list.
Everything runs on your machine. No API key, no network call, no data leaving your repo unless you explicitly push. The vibgrate command is an alias for vg — they are interchangeable.
See it run
Related MCP server: codemap
Try it in 10 seconds
No install, no signup:
npx @vibgrate/cli scan # drift score + upgrade priorities
npx @vibgrate/cli build # build the code graph
npx @vibgrate/cli ask "what does AuthService do?"Install for repeat runs:
npm install -D @vibgrate/cli
npx vg scan # vg is the primary command; vibgrate is an aliasLocal binaries live in
node_modules/.bin— usenpx vg(or an npm script) unless you install globally.
Use it with your AI assistant
vg serve starts Vibgrate AI Context — a local-first MCP server that
gives any MCP-compatible assistant (Claude, Cursor, Windsurf, Copilot, Gemini
CLI, …) your code map, offline drift, local models, and version-correct
library docs, all from your machine (no account, nothing uploaded; thin
local docs fall through to the hosted catalog unless you pass --local). No
context-window stuffing, no hallucinated APIs. The map keeps itself fresh:
when files change — including edits the assistant itself just made — the next
tool call rebuilds it incrementally before answering, with no watcher or
daemon involved.
Wire it up in one command:
vg install # interactive: pick your assistant(s) and done
vg install --all # install for every detected assistant at onceThis writes the MCP config for your chosen tool(s) and installs a skill that teaches the assistant how to query the graph. After reloading your assistant you get graph-aware answers: call trees, impact analysis, drift findings, version-correct library docs — all from local data. The token savings are measured and published, methodology included, at vibgrate.com/cli/benchmarks/token-savings.
Browse all 21+ supported assistants and their skill descriptions at vibgrate.com/skills.
Tools
vg serve exposes 19 MCP tools:
orient — start here: project overview, entry points, where to look first.
search_symbols — find a symbol by name or literal string.
query_graph — find code by meaning: symptoms, relationships, what-breaks-if.
get_node — inspect one symbol: signature, callers, callees, area.
find_path — shortest connection between two symbols.
impact_of — blast radius of a change: dependents, files, covering tests, risk.
tests_for — which tests cover a symbol.
get_graph_summary — code map overview: counts, languages, top areas and hubs.
list_areas — code areas (communities) by size.
list_hubs — most-depended-on symbols.
get_facts — deterministic facts for a node (contract / invariant / characterization).
guide_node — cited standards and practices for a node (OWASP/CWE).
check_drift — offline dependency inventory with optional git who-added attribution.
vuln_attribution — who introduced each open vulnerability, exposure windows, CRA remediation metrics.
list_vulnerabilities — known vulnerabilities from the last
vg scan --vulns: CVE, severity, CVSS, fixed version.upgrade_impact — what breaks if you upgrade a package: major distance, import blast radius, vulns fixed.
list_models — local models on disk (Ollama / LM Studio / gguf).
resolve_library — resolve a library to its canonical id and the version your project uses.
library_docs — version-correct usage docs for a library, sliced to a token budget.
Prefer the hosted server over your team's scan data? Vibgrate MCP connects your assistant to Vibgrate Cloud (OAuth 2.1, 51 tools).
Understand any codebase
Build the graph once, query it continuously:
vg build # index the repo (incremental; re-run after changes)
vg show src/auth/service.ts # what this file does, calls, and is called by
vg ask "where is rate limiting enforced?"
vg impact src/db/connection.ts # what breaks if this changes + tests to run
vg path src/api/handler.ts src/db/query.ts # shortest call path between two files
vg tree src/server.ts # call tree rooted at a node
vg insights # overview: hubs, hotspots, untested pathsThe graph is byte-deterministic and reproducible — the same repo always produces the same graph on every machine.
vg share # make the graph committable + auto-updating for the team
vg serve # start Vibgrate AI Context (local-first MCP: code map + drift + version-correct docs)Measure and manage upgrade drift
vg scan # drift score + risk level + ranked priorities
vg scan --push # same, and upload to Vibgrate Cloud for trend tracking
vg baseline # snapshot current drift for regression gating
vg report # generate a report from a saved scan artifactOne scan gives you:
Overall score (0–100) and risk level (Low / Moderate / High)
Score breakdown — runtime, frameworks, dependencies, EOL
Per-project detail across Node.js/TypeScript, .NET, Python, and Java
Actionable findings ranked by likely impact
SBOM export (CycloneDX / SPDX)
Known vulnerabilities (opt in with
--vulns) — severity, CVSS, the fixing version, and, in a git repo, who introduced them
Find known vulnerabilities and who introduced them
vg scan --vulns checks your installed dependencies against the public OSV database and reports each known vulnerability with its severity, CVSS score, and the version that fixes it — as text, JSON, or SARIF. Add --package-manifest to run it fully offline from a local advisory bundle.
vg scan --vulns # drift score + known vulnerabilities
vg scan --full # drift + vulnerabilities + a banned-dependency reportIn a git repository, every finding is attributed from history: who introduced the vulnerable version, in which commit, and how long you have been exposed. Those exposure windows roll up into remediation metrics framed around the EU Cyber Resilience Act (CRA) — per-severity time-exposed and SLA breaches — so "are we fixing things fast enough?" has a number.
vg why lodash # who added a dependency, every version since, and any open vulnerabilities
vg bisect lodash 4.17.21 # the commit where lodash crossed a version line (e.g. reached the fix)Detection and attribution span the whole npm ecosystem (npm, pnpm, yarn) plus pip/poetry, cargo, composer, bundler, go, pub, hex, NuGet, and Maven/Gradle — read from each project's lockfile, so it works whatever you build in.
Your AI assistant sees this too: vg serve exposes list_vulnerabilities, vuln_attribution, and an upgrade_impact tool that tells an agent what an upgrade will cost — version distance, how many files import the package, the vulnerabilities it fixes, and (online, opt in) the breaking-change notes between your version and the latest.
Track drift over time → create a free workspace
The CLI is fully useful offline. When you want trends across runs and repos — so drift becomes a metric you manage, not a surprise you discover — push scans to a Vibgrate Cloud workspace:
Create a workspace at dash.vibgrate.com and copy your DSN.
Connect and push:
VIBGRATE_DSN="vibgrate+https://<key_id>:<secret>@us.ingest.vibgrate.com/<workspace_id>" \
vg scan --pushUpload is opt-in — nothing leaves your machine until you run --push. Store the DSN as a CI secret, never commit it.
CI integration
Drop vg into any pipeline to turn drift scoring into a quality gate:
# GitHub Actions — drift gate + SARIF upload
- name: Vibgrate scan
env:
VIBGRATE_DSN: ${{ secrets.VIBGRATE_DSN }}
run: npx @vibgrate/cli scan --push --format sarif --out vibgrate.sarif --fail-on error
- name: Upload SARIF
if: always()
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: vibgrate.sarifGate on drift budgets and regression relative to a baseline:
vg baseline
vg scan --baseline .vibgrate/baseline.json --drift-budget 40 --drift-worsening 5--drift-budget <score>fails the build if drift exceeds your budget.--drift-worsening <percent>fails the build if drift worsens by more than X% vs baseline.
Copy-paste CI templates live in examples/github-actions/. Azure DevOps and GitLab CI snippets are in DOCS.md.
Version-correct library docs
vg lib fetches usage docs pinned to the exact version in your lockfile — never a newer API your code can't call yet:
vg lib react # React docs at your installed version
vg lib express --fn middleware # specific function referenceAI assistants connected via MCP use vg lib automatically when answering questions about library APIs in your project.
SBOM and OpenVEX
vg sbom export --format cyclonedx --out sbom.cdx.json
vg sbom export --format spdx --out sbom.spdx.json
vg sbom delta --from .vibgrate/baseline.json --to .vibgrate/scan_result.json --out delta.txt
vg vex # generate an OpenVEX document for attestationPrivacy & offline-first
No data leaves your machine unless you run
--push/vg push/vg share.Drift scoring reads manifests and configs only. The code graph (
vg build/vg map) and a few extended scanners (code quality, database schema, UI text) read your source locally to compute structural facts and metrics — never a raw source line, and never uploaded as-is; see DOCS.md for exactly what each one reads.Works without login and without any SaaS dependency.
--offlinedisables registry/network lookups;--package-manifest <file>feeds drift scoring a local version bundle.--max-privacysuppresses local artifact writes and high-context scanners;--no-local-artifactsskips writing.vibgrate/*.jsonto disk.
vg scan --offline --package-manifest ./package-versions.zip --max-privacy --format json --out scan.jsonAdd .vibgrate/ to your .gitignore — those are regenerated local outputs.
More on how Vibgrate handles code and data: vibgrate.com/security.
Quick start with AI assistants
Paste this into your AI coding tool (Claude, Cursor, Copilot, Gemini CLI, …):
Set up Vibgrate for local codebase intelligence:
1. Install: npm install -g @vibgrate/cli@latest
2. Build the graph: vg build
3. Wire your assistant: vg install
4. Ask: vg ask "what are the main entry points?"
Then explain the architecture and my top 3 upgrade priorities.See docs/QUICKSTART-PROMPT.md for the full prompt.
Command reference
Under each set, commands are listed A–Z. A short typical path (usual order) is called out where it helps.
Code graph
Typical path: vg build → vg status → vg ask → vg impact → vg share
Command | Description |
| Query the map in natural language |
| Build / update the code map (incremental, deterministic) |
| Build an air-gapped bundle (grammars + graph + library catalog) |
| Propose a graph-grounded code edit (dry-run by default; |
| Precompute the semantic index for instant |
| Export the map (json / ndjson / graphml / dot / cypher / md / html / SBOM) |
| Deterministic facts for a node (contracts, invariants) |
| Cited standards / practices for a node (free pack) |
| What breaks if you change it — and the tests to run |
| Wire (or remove) Vibgrate AI Context + skill in your AI assistant ( |
| Version-correct, drift-annotated library docs |
| Map insights: overview, most-depended-on code, natural groupings, cross-area smells |
| Code Modes (Spark / Flow / Forge) + local fleet (Ollama / LM Studio / gguf); |
| How A connects to B (shortest path) |
| Local report of tokens/$ saved vs a grep baseline (estimates) |
| Rebuild the map when files change |
| Start Vibgrate AI Context (local-first MCP: code map + drift + version-correct docs) |
| Make the graph committable + auto-updating for your team |
| Explain a node: what it is, what it calls, what calls it |
| Cache/freshness, counts, staleness |
| Which tests cover a node |
| Call tree rooted at a node |
| What the graph cannot resolve, ranked by blast radius |
Diagnostics, IDE & runtime
Typical path: vg doctor → vg lsp → vg daemon
Command | Description |
| Local workspace daemon for multi-root graph sessions (IDE / agents): |
| Read-only diagnosis: config, credentials (redacted), map freshness, hosted reachability, MCP launch |
| Language server (stdio) — engine behind Vibgrate for VS Code and other thin IDE clients |
| Show production context-policy pin; |
Drift scoring & supply chain
Typical path: vg init → vg scan → vg baseline → vg report → vg fix
Command | Description |
| Create a drift baseline |
| The commit where a dependency crossed a version line ( |
| What is outdated across dependencies (offline; |
| Signed, reproducible regulatory evidence (regime-neutral; CRA first) |
| Ranked, risk-tiered upgrade plans from the hosted planner — then apply the one you choose |
| Initialise config and |
| Generate a report from a scan artifact |
| Export CycloneDX/SPDX SBOM, diff two artifacts, or emit an OpenVEX document |
| Scan for upgrade drift |
| Comprehensive scan: drift + vulnerabilities + a banned-dependency report |
| Scan and push results to Vibgrate Cloud |
| Also detect known vulnerabilities (OSV; offline via |
| Check for and install updates |
| Who introduced a dependency, its version history, and any open vulnerabilities |
Workspace auth & cloud upload
Local scoring does not require this — nothing leaves your machine until you push.
Typical path: vg login → vg dsn create → vg push → vg logout
Command | Description |
| Generate a DSN token |
| Authenticate the CLI with your Vibgrate workspace (or clear stored credentials) |
| Upload scan results to Vibgrate Cloud |
vg scan [path] [--vulns] [--full] [--format text|json|sarif|md] [--out <file>] [--fail-on warn|error] \
[--offline] [--package-manifest <file>] [--no-local-artifacts] [--max-privacy] \
[--drift-budget <score>] [--drift-worsening <percent>] [--baseline <file>]Full flag and configuration reference: DOCS.md · vibgrate.com/cli.
Why teams adopt Vibgrate
Most systems don't fail all at once — they accumulate upgrade debt and architectural drift silently until migrations become expensive. vg makes that debt measurable and repeatable — the practice we call Code Drift Intelligence — and gives AI assistants the local context they need to be useful:
Mode | What you get | Best for |
One-off scan | Fast snapshot of drift score, lag, and findings | Audits, due diligence, migration planning |
CI-integrated scan | Continuous drift signal, SARIF annotations, regression guardrails | Keeping upgrade debt under control long-term |
MCP + graph | AI assistant with real-time, offline codebase context | Day-to-day development, code review, refactoring |
Recommended rollout: vg build + vg install now, add vg scan to CI this week.
Requirements
Node.js 22+
macOS, Linux, Windows
Command name conflicts
vg is short and occasionally conflicts with other tools (virtualgo, vugu, the oh-my-zsh git verify-commit alias, custom shell aliases, etc.).
vibgrate is an identical alias — same binary, same flags, same behaviour. If vg is taken on your system, use vibgrate everywhere instead:
vibgrate scan # same as: vg scan
vibgrate build # same as: vg build
vibgrate serve # same as: vg serveWhen @vibgrate/cli is installed, it registers both bin entries unconditionally. If it detects at install time that vg is already claimed by another tool, it prints a one-line notice pointing you to vibgrate.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceA local-first MCP server that provides AI agents with safe codebase access through file discovery, hybrid lexical-semantic search, and project introspection. It features durable local memory and semantic indexing while keeping all data and processing entirely on your local machine.Last updated74615MIT
- Alicense-qualityAmaintenanceMCP server for local-first code intelligence, providing structural code graph, semantic search, and impact analysis to AI agents.Last updated1MIT
- Alicense-qualityAmaintenanceUltra-lightweight, local-first MCP server for AI-powered code intelligence, providing AST-based analysis and 20+ tools while ensuring zero data leakage.Last updated43MIT
- Alicense-qualityBmaintenanceLocal-first code intelligence and safety layer for AI coding agents. MCP server exposes dependency graph, impact analysis, and AST-compressed repo context, backed by typed local memory, patch-scope safety gates, and git-independent transaction rollback.Last updatedMIT
Related MCP Connectors
An MCP server that gives your AI access to the source code and docs of all public github repos
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vibgrate/cli'
If you have feedback or need assistance with the MCP directory API, please join our Discord server