Capsule
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@CapsuleRun the test suite and give me a capsule of the results"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Capsule — Codex plugin MCP server for exact-recoverable token efficiency
A local-first Codex plugin and MCP server for exact-recoverable context compression.
Capsule reduces model-visible terminal, file, project, web, and context output while keeping the complete result locally recoverable.
Capsule is a Codex token efficiency tool and an MCP context compression layer: it keeps the smallest safe evidence view visible while preserving exact local recovery for the complete result.
The graphic is illustrative, not a universal percentage claim; reproduce the paired workload with the benchmark commands below.
Codex does not need to reread the same terminal output, whole files, project neighbours, web pages, or tool catalogues on every turn. Capsule turns that repetition into compact, exact-recoverable evidence.
Why Capsule?
Without Capsule | With Capsule |
Repeated output fills the context window | Replays become a compact exact handle |
Large files are reread from line 1 | Task-specific ranges are selected first |
A project is explored file by file | Symbols and dependency impact are compiled once |
Web results arrive as a giant page | Text, URLs, and reference IDs stay recoverable on demand |
Every tool exposes its full catalogue | Common actions stay small; the rest is discoverable |
The core rule is simple:
request -> classify -> compact view \-> exact local evidence -> expand on demand
Capsule is local-first, deterministic, and conservative. If a projection would be larger, lossy, unsafe, or explicitly disallowed, it passes the original result through.
Related MCP server: Global MCP Server
What it covers
Terminal:
run,batch, andflowprojections remove repeated, low-value stdout/stderr while preserving failures and critical lines. Plain PowerShellGet-Contentreads use a verified local file fast path, query-focused evidence, and unchanged-file replay; unsafe or complex syntax falls back to the normal shell. See the Get-Content guide.Files: bounded reads, replay detection, immutable-baseline edits, and exact range expansion.
Projects: incremental symbol/dependency indexing, impact cones, and proof packets for query and refactor work.
Web: bounded structured results plus an opt-in, lossless web lease for exact text, URLs, and
ref_idrecovery. See the web search guide.Context: compaction ledgers, memory loadouts, polling receipts, and pressure-aware summaries.
Skills and tools: abstaining skill routing, deferred action discovery, local filters, and batched execution.
Measurement: workload-specific A/B benchmarks and local gain telemetry; start with the benchmark methodology.
Release quality: shared atomic state primitives, portable verification, and a documentation/link audit for public installations.
Capsule does not claim to control hidden provider-side reasoning, cache, or billing counters. Its measurements describe the observable model-facing payload and local exact-recovery path.
Find Capsule
Capsule is an open-source Codex token-efficiency, MCP context-compression, and AI-agent developer-tool project. The public project site is hakiyaka.github.io/capsule; the source, benchmarks, installation instructions, and release history remain on GitHub. Use the site for a concise overview and the repository for exact implementation and verification evidence.
In search terms, Capsule is a codex-plugin MCP server for token reduction and exact-recoverable context; each phrase describes a shipped capability, not a ranking promise.
Questions and workflow comparisons belong in the public Discussions; reproducible defects belong in Issues. The recommended starting point is How to measure Capsule visibility and token-efficiency results. For concise boundary and compatibility answers, see the Capsule FAQ.
Public guides: install, Codex plugin skills, Codex token efficiency, MCP context compression, Get-Content, web search, terminal output, benchmarks, share and cite, and GitHub discoverability.
A measured first web call
For a first real web search (local measurement):
Size | |
Raw result | 25,877 characters |
Capsule lease | 519 characters |
Model-facing reduction | 97.99% |
Recovery | byte-exact |
This is one workload, not a universal percentage. Run the benchmarks on your own tasks before drawing billing conclusions.
Install
Requirements
Node.js 18 or newer
Codex with local plugin/MCP support
Windows, macOS, or Linux
Python 3 only for the optional Python benchmarks
Local plugin
git clone https://github.com/hakiyaka/capsule.git
cd capsule
npm testAdd the repository root as a local Codex plugin. The bundled
.codex-plugin/plugin.json and .mcp.json register the capsule MCP server
and its lifecycle hooks. Trust the hooks when Codex asks, then restart Codex.
For a reproducible checkout instead of the moving main branch, use the
v1.0.7 release and
verify its SHA-256 sidecar
before unpacking the source archive. Capsule is intentionally clone/release
based (package.json remains private); it is not the unrelated public npm
package named capsule.
Verify that the server is loaded:
{"action":"doctor","payload":{}}For a deliberate global-hook installation or removal:
npm run hooks:install
npm run hooks:status
npm run hooks:restoreThe action surface
Goal | Capsule action |
Plan a bounded task |
|
Route an installed skill |
|
Run commands |
|
Read or edit a file |
|
Understand a codebase |
|
Index or recall durable facts |
|
Fetch a real URL |
|
Derive structured data |
|
Recover exact evidence |
|
Measure behavior |
|
For multi-agent work, Capsule keeps a task-wide default of 16 subagents (hard maximum
20), permits one agent per UI/i18n/performance/release lane by default, and asks for one structured decision/evidence/files/blockers digest after the first
10 independent agents, and projects child results without raw screenshots, base64,
full diffs, or transcripts. After each grouped change and decisive check, run stats
and gain once; these are local exposure measurements, not billing claims.
Examples:
{"action":"run","payload":{"command":"npm test"}}
{"action":"project","payload":{"operation":"query","root":"."}}
{"action":"memory","payload":{"operation":"recall","query":"current task","max_chars":900}}For large memory stores, use progressive disclosure: index returns compact
IDs and previews; get recovers one selected record exactly.
For multi-project or multi-agent stores, add a deterministic loadout (or
binding) to pre-filter the candidate set before ranking. It accepts tags,
sources, layers/asset_types, and scope; strict_scope:true prevents
unscoped records from crossing a project or team boundary. This is local
selection, not a replacement for a provider or server-side ACL. Set
strategy:"bootstrap" to prefer L3/L2 profile and scenario records first,
falling back to L1/L0 only when no high-level match exists.
{"action":"memory","payload":{"operation":"index","query":"current task","max_chars":420}}
{"action":"memory","payload":{"operation":"get","id":"mem_..."}}
{"action":"memory","payload":{"operation":"recall","query":"release check","loadout":{"tags":["release"],"scope":{"project":"demo"},"strict_scope":true,"strategy":"bootstrap"},"max_chars":900}}fetch requires a real payload.url or payload.requests.
expand and diff require a real payload.capsule_id returned by an earlier
Capsule call. Capsule never invents recovery IDs.
Lossless web mode
Web zero-copy is intentionally opt-in because it replaces the visible response with a local lease. The complete response remains on disk, addressed by its SHA-256 hash; no text, URL, or reference ID is discarded.
$env:CAPSULE_WEB_ZERO_COPY="1"Or enable one call with capsule_web_zero_copy: true. Measure it with:
npm run benchmark:web:zero-copyThe same exact-recovery principle is available for media with:
npm run benchmark:media:zero-copySafety contract
Capsule follows four rules:
Exact first: the original result is stored before a compact view is emitted.
No token-negative compression: small, literal, failed-to-classify,
raw,full,exact,benchmark, orverbatimrequests pass through.Proof on demand: every compact view identifies how to recover the complete evidence.
Local and bounded: state is local, caches have finite limits, and fingerprints are preferred over raw prompts.
For web and media leases, the exact file is content-addressed and verified with SHA-256. For file edits, stale or overlapping baselines reject the whole transaction before writing.
Benchmarks and verification
Run the fast confidence set:
npm run verify
npm run benchmark:web:zero-copy
npm run benchmark:project
npm run benchmark:refactor
npm run benchmark:get-content
npm run benchmark:get-content:historynpm run verify runs the complete Node test suite, source-integrity audit,
public-readiness audit, and documentation audit. Run the broader suites with
npm run benchmark:full. All benchmark results
are workload-specific; they are not a promise of a fixed saving on every
prompt or a substitute for provider billing telemetry.
The optional read-only GitHub visibility audit records repository metadata and volatile search/traffic signals for maintainers. See the GitHub discoverability guide for bounded commands and interpretation limits; search order is not a promise about Google ranking, users, billing, or quota.
For a consistent public reference, use the share and cite guide, the canonical GitHub repository, or CITATION.cff. Describe the workload and version beside any measurement; do not present one benchmark as a universal saving or ranking claim.
The bounded Get-Content replay benchmark is bounded by
CAPSULE_HISTORY_MAX_BYTES (2 GB by default) and reports only aggregate,
hash-safe measurements; it does not export session text.
See BENCHMARK.md for methodology and CHANGELOG.md for release history.
Repository map
capsule/
|-- mcp/ MCP server and core actions
| `-- storage.cjs shared atomic JSON, bounds, and hashing primitives
|-- scripts/ lifecycle hook, installers, and audits
|-- hooks/ bundled Codex hook entry points
|-- bench/ reproducible A/B benchmarks
|-- tests/ contract and parity tests
|-- skills/ bundled map-token-context plugin skill
|-- optional-skills/ optional specialist skill packages
|-- docs/ crawlable Pages site and search-intent guides
`-- .codex-plugin/ Codex plugin manifestPrivacy
Automatic decisions store bounded counters and keyed fingerprints, not raw
prompts. Automatic event, phase, and final-memory capture is off by default; set
CAPSULE_CAPTURE_MEMORY=1 only when you explicitly want sanitized, bounded
excerpts stored locally. Explicit index, remember, and memory capture
operations store only the content requested by the caller. State lives in the
platform-appropriate local data directory. See the full privacy policy
for the explicit web-search and GitHub-audit boundaries.
Set CAPSULE_STATE to an absolute directory to choose a different local state
root. Use the supported purge operation to remove cached projects or
capsules. Telemetry responses omit session identities and absolute paths by
default; request include_identity:true only for a local diagnostic.
Contributing
Read CONTRIBUTING.md before opening a pull request. Report security issues using SECURITY.md. Capsule is released under the MIT License.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceRepomix MCP Server enables AI models to efficiently analyze codebases by packaging local or remote repositories into optimized single files, with intelligent compression via Tree-sitter to significantly reduce token usage while preserving code structure and essential signatures.91,62528,125MIT
- FlicenseNot gradedqualityDmaintenanceA modular MCP server that extends GitHub Copilot's capabilities through intelligent context compression and dynamic model routing for long-lived coding sessions.4
- AlicenseAqualityAmaintenanceAn MCP server that preserves LLM context by intercepting large data outputs and returning only concise summaries or relevant sections. It enables efficient sandboxed code execution, file processing, and documentation indexing across multiple programming languages and authenticated CLIs.1117,96020,252Elastic 2.0
- AlicenseNot gradedqualityAmaintenanceMCP server providing hash-verified file editing and targeted reads, reducing context consumption and preventing silent corruption by requiring content hashes for edits.1434Apache 2.0
Related MCP Connectors
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for generating rough-draft project plans from natural-language prompts.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hakiyaka/capsule'
If you have feedback or need assistance with the MCP directory API, please join our Discord server