Optimizes Claude's context window by isolating large MCP query results via an external CLI and structured extraction.
This skill implements a daemon-based isolation pattern for Model Context Protocol (MCP) tools that return large datasets, such as LSP symbol lookups, database queries, or deep file searches. By offloading heavy JSON payloads to an external process and returning only high-density summaries to the LLM, it prevents context saturation and significantly reduces token costs. This architecture enables an efficient 'Explore-Locate-Read' workflow, allowing Claude to navigate massive codebases by identifying locations first and only reading specific code segments when necessary.
Key Features
01Supports 'Explore-Locate-Read' workflows for efficient codebase navigation.
02Isolates heavy query results into temporary files for selective retrieval via Read tools.
03Reduces context token consumption by up to 95% using structured output extraction.
040 GitHub stars
05Compatible with MCP-SSE protocols and query-type tools like Serena LSP.
06Implements an external CLI pattern to bypass direct LLM context bloat.
Use Cases
01Navigating enterprise-scale codebases where symbol searches return thousands of tokens.
02Performing wide-scale refactoring analysis without exhausting the session context budget.
03Running complex database or search queries where only specific metadata is needed for reasoning.