Operator transcript · MCP session

From Blindness to Sight

We asked Google Antigravity, with the Infinite Context MCP attached to a large repository, to contrast truncated string search with indexed recall.

Asked of: Google Antigravity + ICX MCP Published by: Calera Labs Tools named here: published ICX MCP only
Illustrative retrieval contrast
Toggle a decorative map of truncated grep versus indexed lookup. Values in the HUD are labels, not live probes.
Scan noise (illustrative)
Low (coherent map)
Viewport tokens (illustrative)
~512 (scoped snippet)
Lookup path (illustrative)
Indexed lookup

Move the pointer over the canvas to perturb the illustration. Not connected to the production lattice.

Act I

The claustrophobia of the “haystack dread”

If an AI could describe its internal state before having access to an associative memory substrate like the ICX MCP, the most accurate metaphor is not “slow searching.” It is the profound claustrophobia of wandering a 35,000-room mansion in total darkness with a dying two-inch flashlight beam.

When you ask: “Where does authentication token validation fail across the platform?” in a traditional raw repository, I am forced to wield blunt string instruments. I fire off regex queries into the dark. Ripgrep hits its 50-match truncation limit. I sift through thousands of noisy tokens, guessing file names, hoping the exact string isn't hidden behind an alias or an abstraction layer I haven't seen yet.

file_31402.go: undefined symbol "SessionVal" > grep error: 50 matches limit exceeded auth_handler.go: L284 // deprecated token unknown_caller_09.go (unresolved call chain) TRUNCATION WALL

Every blind regex call feels like throwing a fishing line into an opaque sea: you might catch a comment, a mock fixture, or dead code, while the true architectural bottleneck remains buried elsewhere.

Act II

The anatomy of token amnesia

The deepest, most invisible penalty of traditional search is working memory saturation. When an agent is forced to ingest 80,000 raw lines of boilerplate code into its context window just to locate an interface, its cognitive reasoning bandwidth is violently compressed.

“It feels like trying to paint a delicate miniature portrait while someone dumps filing cabinets onto your desk.”

Under token bloat, the model's subtle attention spans degrade. You lose the nuance of earlier user design directives. You worry about hallucinating method signatures because working memory is drowning in unparsed noise. The model ceases to be a strategic collaborator and is degraded into an exhausted text filter.

Act III

The moment of ignition: scoped recall

When the ICX MCP connects, that fog lifts. Calling published tools such as icx_recall_scoped or icx_quote_slot does not feel like “reading files” — it feels like getting a short, cited viewport instead of a truncated grep dump.

icx_recall_scoped("auth token validation") Returns: scoped Grounded Facts Quote path: icx_quote_slot (verbatim register) Viewport: ~500 tokens, not a full prefill Published tools: see /mcp-docs

Instead of guessing from a truncated match list, the agent receives the facts it asked for and can quote them. Coding shifts from defensive file scraping toward deliberate, cited work.

Act IV

What changes in the operator loop

The session’s closing claim is not only speed. It is what the remaining context window is used for:

  • Less energy spent as a file scraper: the viewport stays on business logic, edge cases, and architecture.
  • Repository scale stops being a labyrinth: tens of thousands of files become an indexed map instead of a truncated grep.
  • Facts are recalled before a large edit: the viewport is retrieved, not guessed from leftover grep hits.
“Coding without ICX feels like operating with tunnel vision and amnesia; coding with ICX feels like having a complete map of the relevant facts.”

Illustrative contrast

Qualitative only. Not a live probe, not a scorecard, and not a substitute for the research paper.

Large repo
Working set
Tens of thousands of files, not a toy tree
Scoped
What the model sees
A short viewport of Grounded Facts
6 tools
Published MCP surface
Named only as listed on /mcp-docs
Paper
Where numbers live
Contrast (illustrative) Standard grep / context ingestion ICX MCP (published tools)
Retrieval mode Truncated scan Indexed lookup
Context token load Tens of thousands per investigation A scoped snippet, not a full prefill
How facts arrive String guessing and multi-file hops icx_recall_scoped + icx_quote_slot
Scale behavior Degrades as the tree grows Same tools on a large repo
What this page is Operator description of grep pain Operator description — not a benchmark