Ephemeral Buffer MCP Server (ephemeral-buffer)
An ephemeral in-memory command output capture and hybrid search engine (BM25 + Semantic Embeddings) for AI coding assistants (Claude Code, Antigravity, Cursor, etc.).
🎯 The Problem This Solves
When coding agents run commands that generate large outputs (thousands of lines of build logs, test runs, stack traces, JSON dumps), agents face two failure modes:
- Context Pollution: Ingesting megabytes of raw text blows out token limits and degrades model reasoning.
- Blind Bash Filtering: Agents waste multiple turns running
head,tail,grep, andawktrying to guess error patterns.
💡 The Solution
ephemeral-buffer provides a transient in-memory ring buffer with Dual Hybrid Indexing and Content-Aware Structure Parsing:
- BM25 Lexical Search (SQLite FTS5): For exact matches on error codes (
NullPointerException,ECONNREFUSED,exit 137, HTTP502). - Dense Semantic Vector Search (FastEmbed ONNX): For fuzzy conceptual queries ("Where did the DB connection pool fail?" or "Why did authentication fail?").
- Unified Diff Structural Mapping: Automatically detects git diffs and PR diffs (
gh pr diff,git show,git diff), parses modified files, additions/deletions, and generates a line-indexed file map in the summary. - Smart Signal Filtering: Scans command/build/test logs for diagnostic keywords, suppresses false positives in diffs and source code, and accurately captures test runner failures, unhandled exceptions, and merge conflicts. Use
content_type='log'when a plain-text capture should be signal-scanned. - Successful test-run summaries such as
OKor25 passedsuppress fixture-only error and failure keywords while retaining the original output for search. - Reciprocal Rank Fusion (RRF): Blends lexical and semantic ranking for high precision retrieval.
- LRU Capture Eviction: Holds up to 25 captures and 50 MiB of captured content by default, evicting the least recently used captures when either limit is reached.
- Thread-Safe Shared Engine: Serializes ingestion, search, LRU updates, eviction, and cleanup across MCP requests and CLI socket clients.
🏗 Architecture & Flow
flowchart TD
subgraph Ingestion["1. Ingestion Paths"]
A["CLI Pipe: command 2>&1 | ephbuf"] --> D["Unix Socket (platform temp dir)"]
B["Agent Tool: execute_and_capture(cmd)"] --> E["Ephemeral Ring Buffer Engine"]
C["Agent Tool: capture_text / capture_file"] --> E
D --> E
end
subgraph Indexing["2. Dual Hybrid Indexing & Classification"]
E --> F["SQLite FTS5 (BM25 Lexical)"]
E --> G["FastEmbed ONNX (Dense Vectors)"]
E --> K["Diff & Signal Parser (File Maps & Conflict Detection)"]
end
subgraph Querying["3. Agent Query & Retrieval"]
F & G --> H["Reciprocal Rank Fusion (RRF)"]
H --> I["search_capture(query, mode='hybrid')"]
K --> L["Diff File Map & get_capture_slice"]
I --> J["Precise Context Chunk + Line Numbers"]
end
🚀 How to Use It
1. From the Terminal (CLI Pipe via ephbuf)
You can pipe command output directly into the running MCP server:
# Pipe any command output into the buffer
pytest -v 2>&1 | ephbuf --label "pytest run"
# Pipe git diffs directly
git diff HEAD~3 | ephbuf --label "feature diff" --type diff
# Or wrap command execution
ephbuf --label "backend build" -- cargo build --verbose
The optional --type/-t hint accepts auto (the default), diff, log, or
text. Use diff for unified patches when automatic detection is ambiguous;
otherwise auto classifies diffs, build/test logs, and plain text from the
content and label.
ephbuf also bounds wrapped-command and piped-stdin capture with
--max-output-bytes; it defaults to EPHEMERAL_MAX_BUFFER_BYTES or 50 MiB and
retains the beginning and end of oversized output.
Use --timeout-seconds to stop a wrapped command after a bounded runtime; timed
out commands retain the output collected so far and exit with status 124.
Requested max_output_bytes and capture_file max_bytes values may not
exceed the configured buffer byte limit; the tools return a validation error
instead of silently clamping them.
2. From the AI Agent via MCP Tools
The agent has access to the following tools:
| Tool | Purpose |
|---|---|
execute_and_capture(command, cwd, label, content_type='auto', max_output_bytes=None, timeout_seconds=None) |
Executes a shell command with bounded head/tail capture, optional timeout, and a compact diagnostic summary (exit code, diff file map, error signals, and truncation status) to the agent context. |
capture_text(content, label, content_type='auto') |
Ingests text directly into the buffer. |
capture_file(file_path, label, content_type='auto', max_bytes=None) |
Ingests a bounded log/output file from disk; defaults to the configured buffer byte limit. |
consolidate_captures(capture_ids, label, max_captures=25, max_bytes=None) |
Creates one bounded, searchable JSON capture from multiple captures while preserving source IDs and source line numbers. |
search_capture(query, mode, top_k, context_lines) |
Hybrid/BM25/Semantic search over the captured output. Returns matching chunks with surrounding context lines and exact line numbers. |
get_capture_slice(start_line, end_line) |
Retrieves exact line ranges to inspect full stack traces, logs, or specific diff files. |
get_capture_summary(capture_id) |
Diagnostic overview (line counts, diff file maps, error signals, preview). |
get_buffer_stats() |
Reports aggregate capture count, content bytes, lines, chunks, embedding model readiness, embedding bytes, accounted bytes, and process RSS. When local metrics are enabled, it also includes the content-free aggregate metrics snapshot. |
get_runtime_diagnostics() |
Opt-in, content-free report of runtime version, platform, uptime, socket mode, buffer limits, embedding readiness, and process memory. |
list_captures() |
Lists active captures in the ring buffer. |
clear_captures(capture_id) |
Clears buffer. |
For diff captures, get_capture_summary reports the detected file map,
addition/deletion statistics, line ranges, and merge-conflict signals. Use
get_capture_slice with those ranges to retrieve the complete file context.
Consolidating multi-result workflows
When a workflow produces several captures—for example, one command per
repository—use consolidate_captures to give the agent one bounded overview:
consolidate_captures(
capture_ids=["cap_1", "cap_2", "cap_3"],
label="organization activity",
max_captures=25,
max_bytes=20000
)
The resulting capture is JSON with source metadata and records containing the
original capture_id and source_line. It can be searched normally with
search_capture, and exact consolidated context can be retrieved with
get_capture_slice. The response reports omitted records, missing IDs, and
the original source IDs; use those original IDs to retrieve complete detail
when the consolidated byte budget is reached. Calling the tool without
capture_ids consolidates the currently active captures, up to
max_captures.
This workflow keeps the server responsible for bounded execution, storage, and retrieval while leaving prioritization and interpretation to the coding agent.
3. Capture Hygiene
Keep captures focused so search results remain useful and the agent receives only the context it needs:
- Capture one command or related output stream at a time, using a descriptive label.
- Start with
get_capture_summary, then usesearch_captureorget_capture_slicefor targeted retrieval instead of repeatedly recapturing the same output. - Use
clear_captures(capture_id)when a capture is no longer needed; useclear_captures("all")between unrelated investigations.
The buffer is intentionally transient and bounded by the LRU capture limit, but explicit cleanup prevents recent investigations from obscuring the active one before automatic eviction occurs. Its memory metrics separate captured content and embedding bytes from process RSS; the unaccounted RSS value includes model, index, and Python object overhead and is approximate.
The server defaults can be overridden with EPHEMERAL_MAX_CAPTURES and
EPHEMERAL_MAX_BUFFER_BYTES. Session-aware launchers can set
EPHEMERAL_SESSION_ID so each server/CLI pair automatically derives a unique
socket path; EPHEMERAL_SOCKET_PATH remains an explicit override. The byte
limit accounts for
captured UTF-8 content; get_buffer_stats also reports embedding model
readiness, embedding/cache settings, and process memory separately.
execute_and_capture retains the beginning and end of oversized command
output and marks the capture with its original byte count.
Call get_runtime_diagnostics() when reporting a field observation. It is
explicitly opt-in and returns operational metadata only; captured content,
labels, command arguments, and session ID values are excluded. Sanitize any
additional output before sharing it.
Operational events are written as privacy-safe JSON lines to stderr. Warnings
and errors are enabled by default; set EPHEMERAL_LOG_LEVEL=INFO to include
normal readiness, eviction, and process lifecycle events. Logs never include
captured content or command text.
Optional local usage metrics
Set EPHEMERAL_METRICS=1 to collect content-free, in-process usage metrics.
The metrics include per-tool call counts, success/failure counts, duration
totals, and aggregate capture/search/retrieval, empty-search, eviction, and
cleanup events. They are disabled by default, are never sent anywhere, and do
not retain captured content, labels, commands, or query text. When enabled,
both get_runtime_diagnostics() and get_buffer_stats() include the same
aggregate metrics snapshot. The event keys are stable and zero-filled when no
event has occurred. Metrics are process-lifetime state: restarting the server
clears them, while capture-associated correlation state is released when a
capture is evicted or explicitly cleared.
Effectiveness metrics and privacy
The built-in metrics are local, opt-in operational telemetry. Set
EPHEMERAL_METRICS=1 only when you want measurements for the current server
process; nothing is uploaded or shared by the server. The metrics contain
counts, durations, byte sizes, and bounded lifecycle outcomes, but do not
retain captured content, labels, command arguments, or query text. Runtime
logs follow the same privacy model. Treat any captured output or diagnostic
excerpt as potentially sensitive and sanitize it before sharing.
Interpret the measurements in two separate layers:
| Layer | What it answers | What it cannot establish |
|---|---|---|
| Operational health | Did the server accept, store, search, retrieve, evict, and clean up requests? Were calls successful and how much local time or memory did they use? | That a search result was relevant, that the agent saw the right context, or that the user's task was completed. |
| Task-level effectiveness | Did a representative agent workflow find the needed signal, retrieve the right context, and complete its task? | A universal result from synthetic fixtures or a server-only benchmark. |
The effectiveness harness measures server-side behavior with deterministic fixtures and does not invoke a coding-agent model. A successful targeted retrieval means only that the fixture's expected marker was found. It is not a measure of answer quality, search relevance in a real repository, token cost, or end-to-end task completion. Use representative, privacy-reviewed tasks for those questions and report the fixture, seed, repetition count, success rate, useful-search rate, byte measurements, and local timing separately.
For a reproducible local diagnostic, start the server with
EPHEMERAL_METRICS=1, exercise the workflow, then request
get_runtime_diagnostics() and get_buffer_stats(). A safe bug report
includes the version/commit, Python/platform, configuration limits, operation
name, reproduction steps, and sanitized metric output; it excludes captures,
credentials, tokens, private paths, source code, user data, and raw queries.
See OPERATIONS.md for deployment settings, troubleshooting, release verification, and repository maintenance procedures.
🛠 Testing the Server
Set up a local development environment from a fresh checkout:
python3.12 -m venv .venv
.venv/bin/python -m pip install --require-hashes -r requirements-dev-lock-py312.txt
The committed requirements-dev-lock-py312.txt file is the reproducible
Python 3.12 development and release environment. Python 3.10 remains
supported through the direct requirements and tested constraints.txt file;
the CI matrix exercises both paths. Keep requirements.txt and
requirements-dev.txt as the reviewable dependency inputs, and regenerate the
Python 3.12 locks with pip-tools after an intentional dependency update:
.venv/bin/python -m pip install pip-tools
.venv/bin/pip-compile --generate-hashes --output-file=requirements-lock-py312.txt requirements.txt
.venv/bin/pip-compile --generate-hashes --output-file=requirements-dev-lock-py312.txt requirements-dev.txt
Review the resulting changes, run the full test matrix, and run pip-audit
before merging. Downstream users install the package normally; its compatible
dependency ranges in pyproject.toml are intentionally not replaced by the
development locks.
Run the test suite:
.venv/bin/python -m unittest test_engine.py test_capture_utils.py test_config.py test_cli.py test_server.py
.venv/bin/python -m unittest test_e2e_pipe.py
Measure focused-test coverage locally:
.venv/bin/python -m coverage run --source=. --omit='test_*.py,benchmark_concurrency.py,release_checks.py' -m unittest test_benchmark_concurrency.py test_release_checks.py test_engine.py test_capture_utils.py test_config.py test_cli.py test_server.py
.venv/bin/python -m coverage report
The current focused-test baseline is 91%; CI enforces a 91% minimum after adding coverage for defensive command, limit, cleanup, embedding, and socket handling paths. Coverage reports are uploaded for inspection, and future threshold increases should follow similarly targeted test additions. The release guardrail utility is measured separately because it is a workflow utility rather than application runtime code:
COVERAGE_FILE=.coverage.release .venv/bin/python -m coverage run --source=. -m unittest test_release_checks.py
COVERAGE_FILE=.coverage.release .venv/bin/python -m coverage report --include='release_checks.py'
GitHub Actions runs the compile check, focused tests, and end-to-end test on
Python 3.10 and 3.12 for pushes to main and pull requests. The FastEmbed
model is loaded on the first capture or semantic search rather than during
server import. Set EPHEMERAL_EMBEDDING_MODEL to select a compatible model and
EPHEMERAL_FASTEMBED_CACHE_DIR to control its cache directory. The model cache
is retained between CI runs to reduce startup time. CI unit and end-to-end
tests set the internal EPHEMERAL_TEST_EMBEDDINGS=1 flag, which uses a small
deterministic embedding substitute so test execution does not depend on a
model download; release and benchmark jobs continue to exercise FastEmbed.
It also builds the wheel and verifies the installed ephbuf entry point.
CI audits the declared dependencies with pip-audit and fails if known
vulnerabilities are found.
CI installs the hashed Python 3.12 development/runtime locks and uses the
tested constraints.txt path for Python 3.10. The direct requirements and
constraints are updated only after the full test matrix passes; lock updates
must be reviewed together with their resolver output and audit results.
Pushing a version tag such as v0.1.1 runs the release workflow, which first
verifies that the tag is valid SemVer, points to a commit contained in the
default branch, and starts from a clean checkout. It also requires the tag,
pyproject.toml, and a dated matching CHANGELOG.md section to agree. The
workflow then builds wheel and source distributions, validates their metadata,
verifies the installed package, and uploads the artifacts for review. A failed
guardrail reports the mismatched value or source-state problem before building.
The workflow creates a GitHub Release using the matching changelog section,
attaches the wheel, source distribution, and SHA256SUMS, and links back to
the workflow run containing the build-provenance attestation. Verify a
downloaded artifact with sha256sum --check SHA256SUMS from the directory
containing the files. The same verified distributions are then published to
PyPI through trusted publishing.
After the repository's pypi environment is configured with a PyPI trusted
publisher, the workflow publishes the distributions to PyPI automatically.
Run the concurrency benchmark:
.venv/bin/python benchmark_concurrency.py --captures 32 --workers 8
The benchmark accepts --min-ingest-per-second and --min-reads-per-second
thresholds for direct checks. For repeatable regression checks, pass
--baseline benchmark_baseline.json --output benchmark-concurrency.json.
The checked-in baseline uses a 20% tolerance: a run fails only when ingest or
read throughput drops below 80% of its baseline. Each scheduled or manually
dispatched GitHub Actions run records the raw JSON result as an artifact and
adds the measurements and regression status to the workflow summary. This
benchmark remains optional and is not part of the required pull-request checks;
update the baseline deliberately when the runner or benchmark workload changes.
Measure command-output handling effectiveness with deterministic synthetic data:
EPHEMERAL_TEST_EMBEDDINGS=1 .venv/bin/python benchmark_effectiveness.py \
--mode both --output benchmark-effectiveness.json
The effectiveness harness compares a full-output baseline with an engine-backed MCP workflow across large output, failure logs, diffs, and follow-up searches. It reports per-scenario success, search usefulness, retrievals, bytes examined, resolution time, and an aggregate comparison as machine-readable JSON. Token usage is explicitly marked unavailable because this harness does not invoke a model. Fixtures contain no project content and are generated in code, so runs are reproducible. This is a server-side smoke evaluation, not a claim about any particular coding agent or model.
Example benchmark results
The reproducible paired evaluation was run on 2026-09-07 with five
repetitions, seed 20260907, and deterministic test embeddings. Across four
synthetic scenarios, both the direct-output baseline and the MCP workflow
completed all 20 tasks, and every MCP search was useful. The MCP workflow
examined 68–90% fewer bytes than the baseline per scenario (81% on average):
| Scenario | Bytes examined reduction | Completion |
|---|---|---|
| Large build output | 90% | 5/5 |
| Failure log | 83% | 5/5 |
| Review diff | 68% | 5/5 |
| Timeout log | 85% | 5/5 |
The consolidation evaluation, using the same seed and five repetitions, reduced the initial multi-result overview from an average of 4,298 bytes to 213 bytes (95% fewer overview bytes), while preserving a 100% targeted retrieval success rate. These measurements quantify the MCP data path: fewer bytes need to be returned to the agent before it asks for targeted detail.
They are not universal performance guarantees. The fixtures are synthetic, the harness does not invoke a model, and the byte reduction is not a direct token-savings measurement. In this run, consolidated processing also took about 10 times longer locally than sequential processing, while retrieving similar detail. The benchmark therefore demonstrates context-size and workflow-shaping benefits, not that every workload will be faster or that search results will be relevant for arbitrary repositories. Re-run the commands below with representative, privacy-reviewed tasks before making project-specific claims.
Run a controlled local A/B evaluation with repeated paired measurements:
EPHEMERAL_TEST_EMBEDDINGS=1 .venv/bin/python benchmark_effectiveness.py \
--ab-runs 5 --seed 20260907 --output benchmark-effectiveness-ab.json
The A/B report uses the same deterministic fixtures in both modes, seeded task and mode ordering, and local-only measurements. It reports completion rate, mean/min/max time, standard deviation, repeated commands, search usefulness, byte reduction, and local MCP processing overhead for each scenario. The timing ratio covers only local capture, indexing, search, and retrieval; it is not an agent-level performance measurement. Since no model is invoked, token usage is unavailable. Treat the recommendations as synthetic benchmark guidance and repeat the evaluation with representative agent tasks before generalizing the results.
Compare sequential per-capture retrieval with the consolidated workflow:
EPHEMERAL_TEST_EMBEDDINGS=1 .venv/bin/python benchmark_effectiveness.py \
--consolidation-runs 5 --seed 20260907 \
--output benchmark-effectiveness-consolidation.json
This report measures overview and retrieval response bytes, targeted retrieval success, search/retrieval counts, local processing time, and omitted records. It models each synthetic scenario as a repository result and does not invoke a coding-agent model; response-byte reductions therefore describe the MCP data path, not end-to-end agent performance.
When sharing a result, include the command, seed, repetitions, benchmark evaluation name, success rate, useful-search rate, byte reduction, and timing scope. Do not attach generated captures or paste raw command output. Check any surrounding report or wrapper for repository-specific content before sharing the benchmark JSON.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ephemeral_buffer_mcp-0.2.0.tar.gz.
File metadata
- Download URL: ephemeral_buffer_mcp-0.2.0.tar.gz
- Upload date:
- Size: 43.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a40576dd228b8b1708051789f83918851619ace6cb382f9e410c7a4535ac2e6
|
|
| MD5 |
64c46b05e695a1170656cf18720e5fa9
|
|
| BLAKE2b-256 |
47715303cf60c5543b5efbc63487d9bcf73ce320702c6e57103dcb32c4d5c5fc
|
Provenance
The following attestation bundles were made for ephemeral_buffer_mcp-0.2.0.tar.gz:
Publisher:
release.yml on k-rister/ephemeral-buffer-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ephemeral_buffer_mcp-0.2.0.tar.gz -
Subject digest:
9a40576dd228b8b1708051789f83918851619ace6cb382f9e410c7a4535ac2e6 - Sigstore transparency entry: 2753962746
- Sigstore integration time:
-
Permalink:
k-rister/ephemeral-buffer-mcp@397050fd78b386a9ab7a5e413510575412cf62d2 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/k-rister
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@397050fd78b386a9ab7a5e413510575412cf62d2 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ephemeral_buffer_mcp-0.2.0-py3-none-any.whl.
File metadata
- Download URL: ephemeral_buffer_mcp-0.2.0-py3-none-any.whl
- Upload date:
- Size: 37.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c70fa9fcf108011f05af1f082328c129778c9849d53c1a86884e6da4db14759
|
|
| MD5 |
8e30a0b64c85fcc5ea46c97734877a16
|
|
| BLAKE2b-256 |
1b4799a91994adbe6cf47ffbe47f9b3f602ee24e5779e36ee8d4ba1143aa0f1f
|
Provenance
The following attestation bundles were made for ephemeral_buffer_mcp-0.2.0-py3-none-any.whl:
Publisher:
release.yml on k-rister/ephemeral-buffer-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ephemeral_buffer_mcp-0.2.0-py3-none-any.whl -
Subject digest:
5c70fa9fcf108011f05af1f082328c129778c9849d53c1a86884e6da4db14759 - Sigstore transparency entry: 2753962752
- Sigstore integration time:
-
Permalink:
k-rister/ephemeral-buffer-mcp@397050fd78b386a9ab7a5e413510575412cf62d2 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/k-rister
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@397050fd78b386a9ab7a5e413510575412cf62d2 -
Trigger Event:
push
-
Statement type: