ContextOS
by itallstartedwithaidea·★ 22·Score 43
A unified MCP context intelligence platform that combines seven foundational repos into a single pip-installable CLI with advanced reasoning capabilities.
Overview
ContextOS is an MCP server that aims to be the operating system layer for AI context by absorbing, extending, and surpassing capabilities of seven leading open-source repositories. It provides a cognition layer with six cognitive primitives for reasoning between retrieval and generation, a retrieval router that handles data based on churn rate, and an index lifecycle manager for self-healing indexes. The platform includes orchestration features like semantic intent routing, request tracing, schema registry, and multi-workspace auth.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose ContextOS when building complex AI agents requiring advanced reasoning capabilities beyond simple RAG patterns, especially when dealing with rapidly changing data across multiple sources with different refresh rates.
When NOT to choose this
Avoid if you need a lightweight solution for simple retrieval tasks without the overhead of the cognitive layer, or if your use case doesn't involve data with varying refresh rates that need sophisticated routing strategies.
Tools this server exposes
12 tools extracted from the READMEregister_sourceRegister a data source with specific churn profile and indexing strategy
routerAccess the data source router for managing and retrieving information
semantic_intent_routerClassify incoming requests and dispatch to correct processing layer
request_tracingTrack lineage and observability data for tool calls
active_forgettingFilter out retrieved context that degrades output quality
reasoning_depth_calibrationDetermine appropriate depth of thinking for a given problem
synthesis_detectionIdentify whether the task requires retrieval or reasoning
unknown_unknown_sensingDetect when missing entire categories of information
productive_contradictionHandle conflicting data as useful signal rather than noise
context_dependent_gravityRe-weight memory importance based on current question
rebuild_indexTrigger rebuild of data indexes manually or automatically
embedding_drift_detectionDetect and handle embedding model version mismatches
Note: Tool names were inferred from feature descriptions and code examples in the README. While not explicitly listed as a tool section, the functionality descriptions and code examples clearly indicate these MCP tools.
Comparable tools
Installation
pip install contextosTo use with Claude Desktop, add this to your claude_desktop_config.json:
{
"mcpServers": {
"contextos": {
"command": "python",
"args": ["-m", "contextos"]
}
}
}FAQ
- How is ContextOS different from a wrapper of other MCP servers?
- ContextOS is not a wrapper but a platform that transforms other tools into modules running on top of it, providing additional orchestration and cognitive capabilities.
- What are the six cognitive primitives?
- Active Forgetting, Reasoning Depth Calibration, Synthesis Detection, Unknown Unknown Sensing, Productive Contradiction, and Context-Dependent Gravity.
Compare ContextOS with
Last updated · Auto-generated from public README + GitHub signals.