Contextful
About
Highly efficient context management for agentic AI: MCP code search, evidence packs, graph context, and memory for large projects.
Details
- Author
- inferensys
- Categories
- AI, Knowledge Base, Developer Tools
Jump to
Setup
Install Contextful in your MCP client (Claude Desktop, Cursor, Windsurf, and others).
Repository: https://github.com/inferensys/contextful
Follow the installation instructions in the repository README, then restart your MCP client.
⚠️ This is in early alpha. The API, features, and integrations are not stable. Expect breaking changes. Feedback & contributions are very welcome!
Local Context Management + Search Engine + Memory for Agentic AI.
Contextful is a runtime contextual layer and local search engine for agents that gives them one fast way to find, compress, cite, and remember project context.
Available as a CLI-first tool with an MCP runtime bridge and generated agent instructions, it integrates seamlessly with Codex, Claude Code, Cursor, Windsurf, GitHub Copilot, VS Code, Cline, Roo Code, Continue, and Zed.
Instead of making an agent read 40 files every session, Contextful indexes the project once and returns a ranked, cited, token-budgetedcontext pack.
Context has always been a bottleneck for agentic AI. Large context window models (for example, 1M tokens) are:
- Expensive and require significantly more compute & processing time.
- More likely to lose key information as the context window fills up.
- Most projects have millions of lines of code, but agents can only fit in limited tokens per context window.
The current solution is to make the agent guess which files to read, then pay the token cost to read them every session. This is slow, expensive, and lossy.
Apart from this, agents have no way to store or share learnings across sessions. Every time they start, they forget everything and have to re-read the same context again.
I started developing Contextful to keep the context window smaller by enabling efficient knowledge retrieval. If we index the project and return a ranked, cited, token-budgeted context pack, we can:
- 100x more efficient token usage:stop paying tokens to re-read the same files.
- Fewer tool calls:one context pack can replace dozens of grep, glob, and read-file calls.
- No lost context between sessions:agents can store session learnings in an evidence-backed memory ledger.
- Shareable project knowledge:lessons and context packs survive context compaction and future sessions.
The default local store is SQLite with FTS-backed search and typed graph tables. V1 ships with:
- SQLite as the default local store.
- FTS5 lexical/BM25 search.
- Typed graph tables:nodes,edges,node_props,edge_props.
- A hot adjacency cache for common graph relations.
- Deterministic structural fingerprints inspired by Code2Vec-style secondary reranking signals.
The next storage upgrades are optional semantic vectors through sqlite-vec, LanceDB, or local HNSW, and compressed adjacency lists with Roaring bitmaps or CSR arrays for larger repositories.
Contextful analyzes the query, classifies intent, and combines lexical search, symbols, docs, graph relationships, and memory hits to retrieve the right evidence. The goal is Google-level project search for agents: vague queries like "resources for auth onboarding" should still land on the right code, docs, and prior lessons.
Agents can store lessons, decisions, and useful project facts, but not as loose "remember this" notes. Every memory requires evidence refs from files, symbols, commits, or prior context packs. When the evidence changes, Contextful marks the memory stale.
Contextful is an MCP server, local indexer, and small CLI:
- MCP server:the agent interface.
- Local daemon / watcher:indexing, rebuilds, freshness, and future benchmarks.
- CLI (cxf):human setup, indexing, search, memory writes, and local smoke tests.
MCP is the right interface because tools, resources, and prompts are exactly what MCP standardizes. The agent asks for context; Contextful returns compact evidence.
npx @inferensys/contextful init --workspace . npx @inferensys/contextful search "where is user auth handled" --workspace . --budget 2000
The primary binary iscxf;contextfulis also provided as a readable alias.
cxf init --workspace <path> cxf index --workspace <path> [--watch] cxf daemon --workspace <path> cxf search "<query>" --workspace <path> --budget 2000 --json cxf memory add --workspace <path> --claim <text> --evidence <ref> cxf server
- context_pack(query, budget, scope)- the killer tool. Returns a ranked, cited, token-budgeted bundle instead of forcing 40 random file reads.
- search_code(query, mode, filters)- powerful code, docs, symbol, and memory search.
- trace_path(from, to, edge_types)- graph traversal across files, symbols, modules, and config.
- impact_analysis(symbol_or_file)- reverse dependencies and likely tests.
- why_changed(symbol_or_file)- current evidence plus git history.
- recall_memory(query, scope)- search session learnings and durable project lessons.
- write_lesson(claim, evidence_refs, scope)- store an evidence-backed memory.
Use this stdio server command in any MCP-aware coding tool:
{ "mcpServers": { "contextful": { "command": "npx", "args": ["-y", "@inferensys/contextful", "server"] } } }
codex mcp add contextful -- npx -y @inferensys/contextful server
Usecxf initonce per workspace. It indexes the project and writes.contextful/AGENT_INSTRUCTIONS.md, a compact skill-style guide that tells agents when to callcontext_pack, when to search more narrowly, and when memory writes are allowed.
Usecxf searchwhen a human wants to test the same evidence pack an agent will receive:
cxf search "how does auth load user profiles?" --workspace . --budget 2000
The MCP server remains the agent interface. The CLI is for setup, inspection, and repeatable local tests.
V1 is local-only. It does not call external embedding APIs, upload source code, edit source files, auto-fix code, or install dependencies inside the target workspace.
Memory writes require evidence references returned by search or context packs:
- file:src/auth.ts:10-40
- symbol:src/auth.ts#AuthService:12
- pack:ctx_...
Invalid or stale evidence is rejected or marked stale.
Adaptive MCP memory system for AI applications. Learns which retrieval strategies work for your data, scores results using cognitive science models, builds a knowledge graph automatically, and validates every parameter change against real query history before adopting it. Patent pending.
Self-hosted Rust-based MCP server for AI agent memory — persistent, queryable memory with hybrid search, knowledge graphs, built-in embeddings, and 14 core tools (expandable to 86+ with profile-based tiering).
Authenticated MCP and agent gateway for Forge Cascade private AI memory, provenance, graph search, and capsule lineage.
Rust MCP server that gives AI coding agents architectural awareness — persistent knowledge graph, blast radius analysis, co-change detection via git, and local semantic search. No API keys, runs entirely on-premise.
Self-improving MCP memory server for AI agents. One command, no cloud, no config. Hybrid search, feedback loop quality system, dashboard UI, auto-linking knowledge graph. Gets better the more you use it.
Persistent memory for AI agents using a semantic knowledge graph. Store, retrieve, and connect memories with semantic search — so your AI remembers context across sessions.
Persistent memory for AI agents. Single SQLite file, 192 MCP tools. FTS5 search, knowledge graph, session handoffs, write gate. No server, no API keys, no LLM calls.
Graph-based long-term memory skill for AI (LLM) coding agents — faster context, fewer tokens, safer refactors
MCP memory server with Hebbian learning — concept connections strengthen through co-activation and weaken through disuse.
A knowledge graph server that provides persistent, multi-context memory for AI models.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





