MCPHub LabRegistryContext-Engine
Context-Engine-AI

Context Engine

Built by Context-Engine-AI โ€ข 372 stars

What is Context Engine?

Context-Engine MCP - Agentic Context Compression Suite

How to use Context Engine?

1. Install a compatible MCP client (like Claude Desktop). 2. Open your configuration settings. 3. Add Context Engine using the following command: npx @modelcontextprotocol/context-engine 4. Restart the client and verify the new tools are active.
๐Ÿ›ก๏ธ Scoped (Restricted)
npx @modelcontextprotocol/context-engine --scope restricted
๐Ÿ”“ Unrestricted Access
npx @modelcontextprotocol/context-engine

Key Features

Native MCP Protocol Support
Real-time Tool Activation & Execution
Verified High-performance Implementation
Secure Resource & Context Handling

Optimized Use Cases

Extending AI models with custom local capabilities
Automating system workflows via natural language
Connecting external data sources to LLM context windows

Context Engine FAQ

Q

Is Context Engine safe?

Yes, Context Engine follows the standardized Model Context Protocol security patterns and only executes tools with explicit user-granted permissions.

Q

Is Context Engine up to date?

Context Engine is currently active in the registry with 372 stars on GitHub, indicating its reliability and community support.

Q

Are there any limits for Context Engine?

Usage limits depend on the specific implementation of the MCP server and your system resources. Refer to the official documentation below for technical details.

Official Documentation

View on GitHub
<p align="center"> <img src="static/logo.svg" width="80" alt="Context Engine" /> </p> <h1 align="center">Context Engine</h1> <p align="center"> <strong>Semantic code search, memory, and symbol intelligence for AI coding assistants.</strong> </p> <p align="center"> <a href="https://context-engine.ai">Website</a> ยท <a href="https://context-engine.ai">Get Started</a> ยท <a href="LICENSE">License</a> </p>

A Note to Our Community

We owe you an honest explanation.

Context Engine was originally open source. We built it in the open because we believed in the community and wanted developers everywhere to benefit from better code search.

Unfortunately, we've seen our work consistently monetized and cloned by others without attribution โ€” entire products built on top of our code and sold commercially. After careful consideration, we've made the difficult decision to remove the source code from this repository.

We're sorry. We know this is frustrating, especially for those who contributed, starred, or relied on the public codebase. This wasn't the outcome we wanted, and we take full responsibility for not protecting the project sooner.

What's still here:

  • AI agent skills for all major coding assistants (see below)
  • The Context Engine marketing site (context-engine.ai)
  • License, legal notices, and attribution files

What's available through the platform:

  • Full hosted service at context-engine.ai
  • VS Code extension on the marketplace
  • ctx-mcp-bridge on npm

We remain committed to building the best code intelligence tools for developers. If you have questions, reach out at john@context-engine.ai.


Install Skills

Context Engine ships AI agent skills that teach your coding assistant how to use 30+ MCP tools for semantic search, symbol graph navigation, memory, and more.

Claude Code / Claude Desktop

The skill is auto-loaded when you connect Context Engine as an MCP server. No manual installation needed.

If you want to add the rules file manually:

# Copy the skill to your project
cp -r skills/context-engine/ your-project/.claude/

# Or reference GEMINI.md / .cursorrules directly โ€” they contain the same rules

Cursor

Context Engine rules are included in .cursorrules at the root of your workspace. Cursor picks this up automatically when the file is present.

# Copy to your project root
cp .cursorrules your-project/.cursorrules

Windsurf / Codex

# Codex skills
cp -r .codex/skills/ your-project/.codex/skills/

# Or use the generic skill file
cp skills/context-engine/SKILL.md your-project/.context-engine-skill.md

Augment Code

cp -r .augment/ your-project/.augment/

Gemini

cp GEMINI.md your-project/GEMINI.md

Any Other Assistant

The core skill file works with any AI assistant that supports custom instructions:

cp skills/context-engine/SKILL.md your-project/

Then tell your assistant: "Read SKILL.md for instructions on using Context Engine MCP tools."


What Do the Skills Do?

The skills teach your AI assistant to:

  • Use search as the default tool โ€” auto-routes queries to the best backend (semantic search, Q&A, symbol graph, tests, config)
  • Navigate code with symbol_graph โ€” find callers, callees, definitions, importers, subclasses
  • Run batch queries โ€” batch_search, batch_symbol_graph, batch_graph_query for 75%+ token savings
  • Store and recall knowledge โ€” memory_store and memory_find for persistent context across sessions
  • Trace cross-repo flows โ€” cross_repo_search with boundary tracing for multi-repo codebases
  • Find structural patterns โ€” pattern_search for retry loops, error handling, singletons across languages
  • Search git history โ€” search_commits_for and change_history_for_path

See skills/context-engine/SKILL.md for the complete tool reference.


Getting Started

  1. Sign up at context-engine.ai
  2. Install the VS Code extension โ€” search "Context Engine" in the marketplace
  3. Upload your codebase โ€” the extension handles indexing automatically
  4. Start searching โ€” your AI assistant now has access to all 30+ MCP tools

License

Context-Engine Source Available License 1.0

ยฉ 2025 Context Engine Inc. and John Donalson.

Global Ranking

-
Trust ScoreMCPHub Index

Based on codebase health & activity.

Manual Config

{ "mcpServers": { "context-engine": { "command": "npx", "args": ["context-engine"] } } }