repovine
Provides first-class support for Angular projects, enabling the repository graph to capture modules, components, and routes.
Parses Dockerfile and docker-compose files to extract runtime resources and link them to code and images.
Parses Helm charts to extract Kubernetes runtime resources and their relationships.
Parses Kubernetes manifests to extract runtime resources and their relationships.
Provides first-class support for NestJS applications, enabling the repository graph to capture modules, controllers, and providers.
Provides first-class support for Next.js applications, enabling the repository graph to capture pages, routes, and server components.
Provides first-class support for Nuxt applications, enabling the repository graph to capture pages, routes, and components.
Provides partial support for Python, extracting backend routes and server-rendered templates from the codebase.
Provides first-class support for React projects, enabling the repository graph to capture components and their relationships.
Provides support for Svelte and SvelteKit projects, including Vue/Svelte single-file components (script blocks only).
Parses Terraform configurations to extract infrastructure resources and their relationships.
Provides first-class support for TypeScript projects (including JS/JSX via the TS toolchain), enabling extraction of exports, imports, and symbols.
Parses Vercel configuration files to extract deployment-related infrastructure resources.
Click 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., "@repovineWhat would be affected if I change the payment module's exports?"
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.
repovine
Repository context assembled and conveyed to coding agents.
The repository knowledge layer
A repository-agnostic core. Across supported languages, frameworks, and infrastructure formats, repovine normalizes repository structure into one queryable model.
Contract boundaries by design. The graph connects repository units through shared code, template, and runtime contracts. These boundaries support repository-scale navigation, dependency impact, runtime flow, and configuration.
Versioned knowledge with explicit ownership. Version-controlled annotations attach intent, invariants, risks, and operational knowledge to graph nodes. Agents and developers author them; repovine checks freshness and structural consistency against repository state.
Together, these layers support intent-driven, context-compiled, contract-verified development. Task intent guides MCP context assembly, and observable claims are checked against repository state.
Checkout-local by design. The live graph and indexes are built from each checkout's working tree and run in memory. Configuration and authored knowledge travel through Git. No database is required.
Benchmarks. Across correctness and restraint tasks drawn from public software repositories, 90% of Repovine runs passed their case-specific diff gate, compared with 10.6% of baseline runs. Explore the results.
Related MCP server: UltraCode
Quick start
Start in an existing repository:
npx repovine setup claude # or codex, cursor, allsetup connects the selected client to repovine, adds repovine skills, hooks, and instructions, and builds the repository graph.
The graph model
repovine deterministically derives a graph of cross-unit contracts from repository state. Source and infrastructure plugins translate stack-specific structures into the same vocabulary of packages, modules, exported symbols, templates, runtime resources, and their relationships—so navigation, dependency impact, runtime flow, and configuration work consistently across supported stacks. Explore the design rationale.
How it works
The engine and MCP provide the base workflow. Interactive clients use it directly. For explicit protocol runs, Delivery Protocol adds a structured assignment → result → compliance contract around the same workflow.
Client
In clients such as Claude Code, Codex, or Cursor, the agent uses repovine MCP directly while the developer stays in the loop.
graph LR
SRC["sources"] --> S1["Stage 1: gather facts"]
S1 --> S2["Stage 2: build graph"]
S2 --> ANN["versioned annotations on graph nodes"]
A["agents and developers"] --> ANN
S2 --> S3["Stage 3: build search index"]
ANN --> S3
S3 --> MCP["MCP tools"]
ANN --> MCP
MCP -->|"bounded context"| C["Cursor, Claude Code, or Codex"]Stage | Input | Output |
Stage 1: gather facts | sources | exports, imports, env names, routes, infra |
Stage 2: build graph | facts | packages → modules → symbols; infra/template/domain edges |
annotations | graph + agent/developer writes | versioned intent, invariants, risks, side effects, and operational constraints |
Stage 3: build search index | graph + annotations | token index; optional embeddings to assist fuzzy search |
MCP | graph + annotations + index | bounded graph and annotation query results |
Delivery Protocol
Delivery Protocol defines the assignment → structured result → compliance report contract. Core owns the schemas, projections, and validators that ground the protocol in observable repository state.
The agent uses MCP to access repository context while it works. The repovine CLI validates the assignment and result and produces the compliance report.
graph LR
IN["assignment"] --> AV["assignment validation"]
AV --> A["agent"]
A <-->|"repository context during the run"| MCP["repovine MCP"]
A --> R["structured result"]
AV -->|"validated assignment"| V["repovine compliance validation"]
R --> V
S["observable repository state + recorded context"] --> V
V --> OUT["compliance report"]repovine validates schema conformance, assignment linkage, and claims it can recompute from the graph, annotations, recorded MCP context, and an optional revision delta. The compliance report covers protocol conformance and repository grounding; behavioral correctness and merge readiness are outside the protocol's scope.
The runnable LangGraph harness demo applies the protocol in an end-to-end agent workflow. Its orchestration topology, sandbox, retries, worktree isolation, and provider behavior are demo-specific implementation choices. See the Delivery Protocol integration guide.
MCP tools
Each tool returns a scoped, structured response.
Query tools, with typical questions for a large repository:
Group | Example question | Tools |
Navigate | where is authentication? what is inside the billing package? |
|
Runtime | what are the entrypoints? how does an order flow through services? |
|
Contracts & config | which consumers are affected by an API change? which environment variables does the worker read? |
|
Architecture | are there boundary violations or god modules? |
|
Maintenance tools service the graph and annotations:
Group | Purpose | Tools |
Memory | which nodes are annotated or stale? |
|
Sync | rebuild and check the graph |
|
Domains | tune the domain config |
|
Declines | dismiss reviewed advisory items |
|
Setup and CLI
setup adds the following repovine integrations to the workspace while preserving existing configuration and project specialists:
Integration | Included |
MCP server | the repovine MCP tools |
Skills |
|
Subagents |
|
Hooks | pre-edit boundary notice, post-edit stale-graph notice, session-start "MCP first" reminder |
Instructions |
|
Command | Goal |
| run the stdio MCP server outside an IDE/CLI client |
| add the integrations above, then build the graph |
| build the graph |
| graph / config / annotation health |
| diagnose the workspace integration |
| remove repovine-managed workspace files |
| version / help |
| harness/CI Delivery Protocol commands: descriptor, manifests, run brief, validation, and compliance |
| harness/CI utilities for repository roles, deterministic orientation, and context-session quality |
STDIO is the only supported MCP transport in v1. For remote, devcontainer, WSL, VM, or devbox use, launch the repovine subprocess inside that environment so it runs in the checkout being analyzed.
Supported stacks
Area | Support |
Languages | First-class support: TypeScript (JS/JSX via the TS toolchain, needs |
Frameworks | React, Next.js, Nuxt, SvelteKit, Angular, NestJS, serverless monorepos; Vue/Svelte single-file components (script blocks only) |
IaC | Partial, expanding coverage: SAM/CloudFormation, Terraform, Kubernetes, Helm, Dockerfile, docker-compose, Vercel |
IaC parsers turn infra files into runtime-resource nodes plus links to the code and images behind them. They cover selected resources and relationships rather than complete format schemas. Coverage is under active development, and extending the existing extractors is a contribution area. Design detail: DESIGN.md.
Requires Node.js 22+ and one indexable root: tsconfig.json, pyproject.toml/setup.py (needs python3), or IaC files. Repositories with supported IaC files can be indexed without a source project; the graph contains infrastructure modules and runtime resources, but no code modules.
Repository files
File / dir | Git | Role |
| commit | main config: graph build and MCP output |
| commit | logical organization of the repository graph |
| commit | semantic annotation memory |
| ignore | local engine cache and workspace state |
Defaults work for most TypeScript repositories. Config reference: docs/workspace-files.md.
Status
Preview (0.1.0), usable today and open to contributions. The graph schema and @repovine/plugin-sdk still change.
Contribute
repovine's plugin architecture provides two public producer surfaces for extending language and infrastructure coverage, both exposed by @repovine/plugin-sdk:
Plugin | What it adds |
Language source producer | a language: source files → modules, imports, exports, semantic hints |
IaC parser | an infra format: files → runtime-resource nodes and links |
Built-in and third-party producers share the same public plugin contracts; core validates their output and owns graph identities and ontology. See the plugin guide and runnable Go source plugin, IaC plugin, and other examples.
Learn more
DESIGN.md: system boundaries, graph contract, trust model, and limitations
CONTRIBUTING.md: dev setup, quality gates
Documentation: guides, references, and the TODO app walkthrough
Platform support: per-surface OS tiers, prerequisites, and promotion rules
examples: runnable plugins and the Delivery Protocol harness demo
License
MIT. See LICENSE.
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
- Flicense-qualityBmaintenanceMCP server that exposes code tracing capabilities including journey flows, HTTP seams, and findings from indexed projects, allowing AI assistants to query software architecture.Last updated
- Flicense-qualityCmaintenanceMCP server for AI coding agents that builds a complete code structure graph and semantic vector index, enabling fast querying of code entities, relationships, and impact analysis.Last updated518
- Alicense-qualityDmaintenanceA production-grade MCP server providing advanced code intelligence capabilities such as semantic search, dependency analysis, and natural language Q&A across multiple programming languages.Last updatedMIT
- Alicense-qualityAmaintenanceMCP server for local-first code intelligence, providing structural code graph, semantic search, and impact analysis to AI agents.Last updated1MIT
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
An MCP server that gives your AI access to the source code and docs of all public github repos
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
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/legann/repovine'
If you have feedback or need assistance with the MCP directory API, please join our Discord server