milos-product-maker/context-rot-detection
Context Rot Detection & Healing MCP Service — gives AI agents self-awareness about their cognitive state
Platform-specific configuration:
{
"mcpServers": {
"context-rot-detection": {
"command": "npx",
"args": [
"-y",
"context-rot-detection"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
MCP service that gives AI agents self-awareness about their cognitive state.
Every long-running AI agent suffers from context rot — measurable performance degradation as the context window fills up. Research from Chroma, Stanford ("lost-in-the-middle"), and Redis confirms this is the #1 practical failure mode in production agent systems.
An agent experiencing context rot doesn't *know* it's degrading — it just starts making worse decisions. This tool gives agents real-time visibility into their own cognitive health.
meta-llama/Llama-3.1-70B and the context window is detected automatically, with results cached in SQLitenpx context-rot-detectionnpm install -g context-rot-detection
context-rot-detectionAdd to .mcp.json in your project root:
{
"mcpServers": {
"context-rot-detection": {
"command": "npx",
"args": ["-y", "context-rot-detection"],
"env": {
"HEALTH_HISTORY_DB": "./health.db"
}
}
}
}Add to claude_desktop_config.json:
{
"mcpServers": {
"context-rot-detection": {
"command": "npx",
Loading reviews...