looplens-mcp

looplens-mcp

An MCP server for detecting retry loops and analyzing iteration patterns in agentic coding workflows, providing structured debugging intelligence to improve repair attempts.

Category
Visit Server

README

LoopLens MCP ๐Ÿ”๐Ÿ”

See the loop. Break the loop.

LoopLens MCP is an iteration observability and loop-detection MCP server for Claude Code and agentic coding workflows.

It is built for a very specific pain point:

You ask the model to fix something. It tries. The fix fails. You ask again. It retries. Same issue. More edits. More noise. ๐Ÿ˜ตโ€๐Ÿ’ซ

LoopLens turns that messy retry cycle into structured debugging intelligence.


โœจ What is LoopLens MCP?

LoopLens is not a memory MCP. LoopLens is not just another logger.

It is a focused debugging intelligence layer that helps AI coding workflows understand:

  • what has already been tried ๐Ÿ”
  • what changed between attempts ๐Ÿงฉ
  • which failures keep repeating ๐Ÿšจ
  • whether the workflow is converging or thrashing ๐Ÿ“‰๐Ÿ“ˆ
  • what the next most promising debugging step should be ๐ŸŽฏ

๐Ÿค” Why LoopLens exists

AI coding tools can be amazing on first-pass fixes.

But repeated repair attempts often become chaotic:

  • same failing command again and again
  • same files edited repeatedly
  • same tests still red
  • new wording, same failure
  • regressions introduced while fixing something else
  • retries that look different but are actually the same loop

That is exactly where LoopLens helps.


๐Ÿง  Core capabilities

1. Iteration logging

Capture repair/debug attempts across a task.

2. Attempt linking

Detect whether a prompt is:

  • a new task
  • a continuation
  • a retry
  • a regression check
  • a strategy branch

3. Loop detection

Identify patterns such as:

  • identical retry loops
  • repeated error signatures
  • command retry loops
  • file oscillation
  • validation stagnation
  • evidence-free retries
  • regression after partial success

4. Attempt comparison

Compare attempt N vs N-1:

  • files changed
  • tools used
  • commands run
  • validations changed
  • hypothesis shifts
  • outcome shifts

5. Convergence analysis

Estimate whether the workflow is:

  • converging โœ…
  • weakly converging ๐Ÿค
  • stagnant ๐Ÿ˜
  • diverging ๐Ÿ“‰
  • regressing โš ๏ธ

6. Next-fix suggestions

Recommend the best next move:

  • gather more evidence
  • isolate root cause
  • narrow validation
  • revert harmful change
  • inspect external signals
  • stop editing and compare attempts
  • split task into subproblems

7. Connector observations

LoopLens can ingest signal from:

  • GitHub / GitLab
  • CI systems
  • Sentry
  • Jira / Linear
  • test runners
  • filesystem metadata
  • other MCP servers

LoopLens is the debugging brain ๐Ÿง  Other tools are signal sources ๐Ÿ“ก


๐Ÿ’ก Philosophy

Don't just log the attempt. Understand the iteration.

That means:

  • structured trajectories instead of flat logs
  • failure fingerprints instead of noisy raw output
  • loop diagnosis instead of generic analytics
  • actionable next-step guidance instead of passive storage

๐Ÿšซ Not a memory MCP

LoopLens does not try to become long-term user memory.

It focuses on:

  • observable debugging events
  • tool calls
  • validation results
  • explicit summaries
  • failure patterns
  • retry trajectories

It is built for debugging, evaluation, and improvement of coding workflows.


๐Ÿ›  Example use cases

  • "Why did the last 3 fixes fail?"
  • "Are we editing the same files without real progress?"
  • "Did the failure actually change?"
  • "Are we stuck in a retry loop?"
  • "Which attempt got us closest to success?"
  • "What should Claude try next?"
  • "Export the last 20 failed repair loops as eval cases."

๐Ÿš€ Quick Start

# Install
uv sync

# Run the MCP server
uv run looplens-mcp

๐Ÿ”Œ Claude Code Integration

Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "looplens": {
      "command": "uv",
      "args": ["run", "--directory", "/path/to/looplens-mcp", "looplens-mcp"],
      "env": {
        "LOOPLENS_LOG_LEVEL": "INFO"
      }
    }
  }
}

โš™๏ธ Configuration

All settings use the LOOPLENS_ prefix:

Variable Default Description
LOOPLENS_DATA_DIR ~/.looplens Base data directory
LOOPLENS_DB_PATH ~/.looplens/looplens.db SQLite database path
LOOPLENS_LOG_LEVEL INFO Log level
LOOPLENS_LOOP_FREQUENCY_THRESHOLD 3 Min repeats to flag a loop
LOOPLENS_LOOP_WINDOW_SIZE 20 Sliding window size for detection
LOOPLENS_REDACTION_ENABLED true Auto-redact secrets from payloads
LOOPLENS_RETENTION_DAYS 90 Days before old sessions are pruned

๐Ÿ”ง MCP Tools Reference

Tool Description
create_session Create a new debug session
get_session Get session details
list_sessions List sessions with filters
close_session Mark session complete/abandoned
ingest_event Record a single tool event
ingest_batch Record multiple events at once
get_session_events Retrieve session event history
detect_loops Run loop detection algorithms
get_loops Get detected loop patterns
mark_false_positive Mark a false detection
get_convergence Get convergence score
analyze_convergence_trend Analyze trend over time
export_eval_cases Export as eval dataset
get_diagnostics Server health metrics
annotate_event Add metadata to an event
search_events Search by tool name

๐Ÿ” Loop Types Detected

  • infinite โ€” same tool called with identical input repeatedly
  • oscillating โ€” alternating between states without converging
  • thrashing โ€” high-frequency oscillation across many tools
  • stuck โ€” no meaningful progress for extended period
  • tool_retry โ€” same tool retried after repeated failures

๐Ÿ— Architecture

looplens/
โ”œโ”€โ”€ server/          # MCP server wiring (app.py, __main__.py)
โ”œโ”€โ”€ tools/           # 16 MCP tool handlers
โ”œโ”€โ”€ resources/       # 4 MCP resource handlers
โ”œโ”€โ”€ prompts/         # 3 MCP prompt builders
โ”œโ”€โ”€ domain/          # Immutable domain models (Pydantic v2)
โ”œโ”€โ”€ storage/         # SQLAlchemy 2.0 async repositories
โ”œโ”€โ”€ ingestion/       # Event normalization pipeline
โ”œโ”€โ”€ loop_detection/  # 4 detection algorithms + classifier + scorer
โ”œโ”€โ”€ convergence/     # 5-metric scoring engine
โ”œโ”€โ”€ analytics/       # Orchestrator for detection + convergence
โ”œโ”€โ”€ security/        # Redactor, path guard, rate limiter
โ”œโ”€โ”€ connectors/      # Claude Code, JSON, JSONL event parsers
โ””โ”€โ”€ exports/         # Eval case exporter

๐ŸŒŸ Why it matters

One of the biggest weak points in AI coding today is what happens after the first fix fails.

LoopLens helps make retries:

  • measurable
  • comparable
  • diagnosable
  • learnable

Instead of:

"try something else"

you get:

"Attempt 3 repeated the same failure signature as attempt 2, edited the same files, and did not reduce validation severity โ€” likely retry loop. Best next step: gather more evidence before editing again."

That is the kind of debugging intelligence coding agents need.


๐ŸŒ Vision

LoopLens aims to become the iteration intelligence layer for agentic debugging:

  • better local debugging
  • better repair observability
  • better eval datasets
  • better failure analysis
  • better coding-agent improvement loops

๐Ÿงช Status

Early project / active build.

If this resonates with you, ideas, contributions, and feedback are very welcome ๐Ÿ™Œ


๐Ÿ“„ License

MIT


๐Ÿ”๐Ÿ” LoopLens MCP

See the loop. Break the loop.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured