Skip to main content
ClaudeWave

Context Fabric is an MCP server that automatically captures project state on every git commit, detects when stored context has drifted from codebase reality, and delivers structured, token-budgeted briefings to AI agents — without requiring any developer action.

MCP ServersOfficial Registry2 stars0 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
Last scanned: 6/11/2026
Install in Claude Code / Claude Desktop
Method: NPX · context-fabric
Claude Code CLI
claude mcp add context-fabric -- npx -y context-fabric
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "context-fabric": {
      "command": "npx",
      "args": ["-y", "context-fabric"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

<p align="center">
  <img src="https://raw.githubusercontent.com/VIKAS9793/context-fabric/main/assets/banner.png" alt="Context Fabric Banner" width="800">
</p>

# Context Fabric

[![npm version](https://img.shields.io/npm/v/context-fabric?color=0ea5e9&labelColor=0d1117)](https://npmjs.com/package/context-fabric)
[![npm downloads](https://img.shields.io/npm/dt/context-fabric?color=0ea5e9&labelColor=0d1117)](https://npmjs.com/package/context-fabric)
[![CI](https://img.shields.io/github/actions/workflow/status/VIKAS9793/context-fabric/ci.yml?branch=main&color=10b981&labelColor=0d1117&label=CI)](https://github.com/VIKAS9793/context-fabric/actions)
[![Status: Stable](https://img.shields.io/badge/status-stable-10b981?labelColor=0d1117)](https://github.com/VIKAS9793/context-fabric)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue?labelColor=0d1117)](LICENSE)
[![Node](https://img.shields.io/badge/node-%3E%3D22.0.0_--_24.x-brightgreen?labelColor=0d1117)](https://nodejs.org)
[![MCP SDK](https://img.shields.io/badge/MCP_SDK-1.29.0-7c3aed?labelColor=0d1117)](https://modelcontextprotocol.io)
[![TypeScript](https://img.shields.io/badge/TypeScript-5.5%2B-3178c6?labelColor=0d1117)](https://typescriptlang.org)
[![Analytics Dashboard](https://img.shields.io/badge/📊_Analytics-Dashboard-f59e0b?labelColor=0d1117)](https://vikas9793.github.io/context-fabric/)

---

Current stable release: `v1.2.2`. See [CHANGELOG.md](CHANGELOG.md) for the release notes.

### **Official Registry Support**
Context Fabric is configured for official inclusion in the **Model Context Protocol (MCP) Registry**. 
- **Namespace**: `io.github.VIKAS9793/context-fabric`
- **Metadata**: [server.json](server.json)
- **Distribution**: Published as an npm package with official MCP Registry metadata.

The context synchronization layer for AI coding agents. Ensure project continuity, eliminate agent memory drift, and manage token budgets automatically across any coding session.

Context Fabric is an MCP server that automatically captures project state on every git commit, detects when stored context has drifted from codebase reality, and delivers structured, token-budgeted briefings to AI agents — without requiring any developer action.

---

## The Problem

Developers using AI coding agents manually construct and maintain documentation systems, session handoff rituals, and context workflows to compensate for the absence of native project continuity tooling. These workarounds share one property: they go stale after commits, and nothing detects it.

The problem is not that AI forgets. The problem is **context drift** — stored context becomes incorrect after code changes, and AI agents proceed with that incorrect context confidently.

Context Fabric is the infrastructure layer that solves it at the root.

---

## CADRE — Context-Aware Drift Resolution Engine

Context Fabric is powered by **CADRE**, a five-engine internal architecture. Every engine solves a specific, documented failure mode observed in real developer workflows.

**What CADRE is.** CADRE is the automated replacement for every manual context management system developers currently build themselves. It sits between the git event stream and the AI agent, deciding what context to capture, when it has drifted, which parts are relevant to the active query, what they cost in tokens, and how to deliver them structured and reliably.

**Who CADRE is for.** Developers building multi-session AI-assisted software projects who currently spend time on any of the following: updating markdown files after commits, creating session-end summaries, maintaining CLAUDE.md or AGENTS.md files, building RAG pipelines for project context, or manually deciding which documentation to load before each task.

### The Five Engines

**E1 — WATCHER**

Installs a git post-commit hook on `context-fabric init`. Fires automatically on every commit. Reads committed Git blobs instead of the mutable working tree, computes SHA256 fingerprints, extracts exported symbols, calculates token estimates, and upserts everything into the local SQLite store. The developer does nothing after setup.

Replaces: markdown-per-commit workflows, 5-step session rituals, and AI interview workflows used to extract structured project knowledge before sessions.

**E2 — ANCHOR**

On every `cf_query` call, compares stored SHA256 hashes against the current state of every tracked file. Returns a DriftReport with a 0–100 drift score and severity classification: LOW (under 10%), MED (10–30%), HIGH (over 30%). Stale files are identified by path and hash delta.

Replaces: manual documentation alignment reviews and the undetected staleness in AGENTS.md that ETH Zurich research (arXiv:2602.11988) demonstrated degrades AI coding performance.

**E3 — ROUTER**

Runs SQLite FTS5 BM25 against the stored component index using the query text from `cf_query`. Returns components ranked by relevance. Path matches are weighted 2x over export symbol matches, because a file path carries structural meaning about the codebase organisation. Falls back to recency sort when the query produces zero MATCH results.

Replaces: manual selection of which documentation to include per task, and the modular context selection problem that emerges when projects decompose knowledge across many files.

**E4 — GOVERNOR**

Applies a configurable token budget ceiling to the E3 ranked output using greedy selection on the relevance-ordered list. Default: 8% of the model context window, leaving 92% for conversation and code. Oversize components are skipped so the remaining budget can still be used by later-ranked matches. Token estimates pre-calculated by E1 mean zero additional file reads at budget selection time.

Replaces: manual token management, and the pattern of keeping sessions alive indefinitely to avoid the cost of context restoration on restart.

**E5 — WEAVER**

Composes a structured markdown briefing from E3 and E4 output. Sections: Project State, Architecture, Architecture Decisions, Budget Summary. When E2 severity is MED or HIGH, a Drift Warning section is prepended before all other content, so the AI is informed of context reliability before reading it.

Replaces: static AGENTS.md briefings that never update, and the manual briefing preparation that developers perform at every session start.

### Data Flow

```
git commit
    |
    v
E1 WATCHER --- SHA256 fingerprint --- SQLite upsert --- FTS5 index update
                                                              |
                                                      cf_query("...")
                                                              |
                                                              v
                                        E2 ANCHOR --- drift check --- DriftReport
                                                              |
                                                              v
                                        E3 ROUTER --- FTS5 BM25 --- ranked component list
                                                              |
                                                              v
                                        E4 GOVERNOR --- greedy selection --- budget-capped set
                                                              |
                                                              v
                                        E5 WEAVER --- briefing composition --- MCP response
```

---

## Quick Start

```bash
npx context-fabric init
```

Initialises the SQLite store, installs the git post-commit hook, stages the stable local runtime under `.context-fabric/runtime`, and runs an initial capture. Connect the MCP server to your tool and context delivery is active from the next commit.

## Installation & Setup

1. **Initialise your project**:
   Navigate to any git-managed repository and run:
   ```bash
   npx context-fabric init
   ```

2. **Configure your AI Environment (Cursor/VS Code/Windsurf)**:
   Add the following to your MCP configuration file.

   **Windows Users (Crucial)**:
   ```json
   {
     "mcpServers": {
       "context-fabric": {
         "command": "cmd",
         "args": ["/c", "npx", "context-fabric"]
       }
     }
   }
   ```

   **Mac / Linux Users**:
   ```json
   {
     "mcpServers": {
       "context-fabric": {
         "command": "npx",
         "args": ["-y", "context-fabric"]
       }
     }
   }
   ```

## Health & Repair

Use the health commands when validating a local install or recovering from a broken hook/runtime state.

```bash
npx context-fabric doctor
npx context-fabric doctor --repair
```

`doctor` reports schema version, search index version, DB integrity, degraded mode, pending and failed captures, plus hook runtime readiness. `doctor --repair` refreshes the local runtime bundle, reinstalls the stable hook wrapper, validates `.gitignore`, and rebuilds the search index when the database is healthy.

## Troubleshooting

### `spawn npx ENOENT` Errors
This usually means `npx` is not in the system's inheritance path for the IDE. 
- **Fix**: Use the absolute path to `node` and the `context-fabric` binary.
- Use `where node` (Windows) or `which node` (Mac/Linux) to find your path.
- Example for NVM/FNM users:
  ```json
  "command": "/Users/name/.nvm/versions/node/v22.14.0/bin/node",
  "args": ["/Users/name/.nvm/versions/node/v22.14.0/bin/context-fabric"]
  ```

### WSL Users
If you run VS Code on Windows but your code is in WSL, you **must** run `init` inside the WSL terminal and use the WSL-absolute path to node in your config.

### Project Path Spaces
On Windows, spaces in your project path (e.g., `C:\My Projects\app`) can break the `npx` spawn. If the server fails, consider moving your project to a path without spaces.

### Feedback & Reporting
If something breaks, please run:
```bash
npx context-fabric doctor
```

`npx context-fabric diag` remains available as a compatibility alias.

---

## FAQ

**Does Context Fabric send my code
ai-developer-toolsclaude-codeclaude-code-plugincontext-driftcursor-idedeveloper-infrastructuremcpmodel-context-protocol-serverssqlitetypescript

What people ask about context-fabric

What is VIKAS9793/context-fabric?

+

VIKAS9793/context-fabric is mcp servers for the Claude AI ecosystem. Context Fabric is an MCP server that automatically captures project state on every git commit, detects when stored context has drifted from codebase reality, and delivers structured, token-budgeted briefings to AI agents — without requiring any developer action. It has 2 GitHub stars and was last updated today.

How do I install context-fabric?

+

You can install context-fabric by cloning the repository (https://github.com/VIKAS9793/context-fabric) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is VIKAS9793/context-fabric safe to use?

+

Our security agent has analyzed VIKAS9793/context-fabric and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains VIKAS9793/context-fabric?

+

VIKAS9793/context-fabric is maintained by VIKAS9793. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to context-fabric?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy context-fabric to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: VIKAS9793/context-fabric
[![Featured on ClaudeWave](https://claudewave.com/api/badge/vikas9793-context-fabric)](https://claudewave.com/repo/vikas9793-context-fabric)
<a href="https://claudewave.com/repo/vikas9793-context-fabric"><img src="https://claudewave.com/api/badge/vikas9793-context-fabric" alt="Featured on ClaudeWave: VIKAS9793/context-fabric" width="320" height="64" /></a>

More MCP Servers

context-fabric alternatives