ephemeral-buffer-mcp 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ephemeral_buffer_mcp-0.1.1/LICENSE +201 -0
- ephemeral_buffer_mcp-0.1.1/PKG-INFO +216 -0
- ephemeral_buffer_mcp-0.1.1/README.md +192 -0
- ephemeral_buffer_mcp-0.1.1/capture_utils.py +152 -0
- ephemeral_buffer_mcp-0.1.1/cli.py +156 -0
- ephemeral_buffer_mcp-0.1.1/config.py +53 -0
- ephemeral_buffer_mcp-0.1.1/engine.py +755 -0
- ephemeral_buffer_mcp-0.1.1/ephemeral_buffer_mcp.egg-info/PKG-INFO +216 -0
- ephemeral_buffer_mcp-0.1.1/ephemeral_buffer_mcp.egg-info/SOURCES.txt +14 -0
- ephemeral_buffer_mcp-0.1.1/ephemeral_buffer_mcp.egg-info/dependency_links.txt +1 -0
- ephemeral_buffer_mcp-0.1.1/ephemeral_buffer_mcp.egg-info/entry_points.txt +2 -0
- ephemeral_buffer_mcp-0.1.1/ephemeral_buffer_mcp.egg-info/requires.txt +3 -0
- ephemeral_buffer_mcp-0.1.1/ephemeral_buffer_mcp.egg-info/top_level.txt +5 -0
- ephemeral_buffer_mcp-0.1.1/pyproject.toml +39 -0
- ephemeral_buffer_mcp-0.1.1/server.py +433 -0
- ephemeral_buffer_mcp-0.1.1/setup.cfg +4 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or exemplary damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2026 Karl Rister
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ephemeral-buffer-mcp
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Ephemeral in-memory command output capture and hybrid search MCP server for coding agents
|
|
5
|
+
Author-email: Karl Rister <krister@redhat.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/k-rister/ephemeral-buffer-mcp
|
|
8
|
+
Project-URL: Repository, https://github.com/k-rister/ephemeral-buffer-mcp
|
|
9
|
+
Project-URL: Issues, https://github.com/k-rister/ephemeral-buffer-mcp/issues
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Requires-Dist: mcp<2
|
|
21
|
+
Requires-Dist: fastembed>=0.7.0
|
|
22
|
+
Requires-Dist: numpy>=1.24.0
|
|
23
|
+
Dynamic: license-file
|
|
24
|
+
|
|
25
|
+
# Ephemeral Buffer MCP Server (`ephemeral-buffer`)
|
|
26
|
+
|
|
27
|
+
[](https://github.com/k-rister/ephemeral-buffer-mcp/actions/workflows/ci.yml)
|
|
28
|
+
|
|
29
|
+
An ephemeral in-memory command output capture and hybrid search engine (BM25 + Semantic Embeddings) for AI coding assistants (Claude Code, Antigravity, Cursor, etc.).
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## 🎯 The Problem This Solves
|
|
34
|
+
|
|
35
|
+
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:
|
|
36
|
+
1. **Context Pollution:** Ingesting megabytes of raw text blows out token limits and degrades model reasoning.
|
|
37
|
+
2. **Blind Bash Filtering:** Agents waste multiple turns running `head`, `tail`, `grep`, and `awk` trying to guess error patterns.
|
|
38
|
+
|
|
39
|
+
## 💡 The Solution
|
|
40
|
+
|
|
41
|
+
`ephemeral-buffer` provides a transient in-memory ring buffer with **Dual Hybrid Indexing** and **Content-Aware Structure Parsing**:
|
|
42
|
+
- **BM25 Lexical Search (SQLite FTS5):** For exact matches on error codes (`NullPointerException`, `ECONNREFUSED`, `exit 137`, HTTP `502`).
|
|
43
|
+
- **Dense Semantic Vector Search (FastEmbed ONNX):** For fuzzy conceptual queries (*"Where did the DB connection pool fail?"* or *"Why did authentication fail?"*).
|
|
44
|
+
- **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.
|
|
45
|
+
- **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.
|
|
46
|
+
- Successful test-run summaries such as `OK` or `25 passed` suppress fixture-only error and failure keywords while retaining the original output for search.
|
|
47
|
+
- **Reciprocal Rank Fusion (RRF):** Blends lexical and semantic ranking for high precision retrieval.
|
|
48
|
+
- **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.
|
|
49
|
+
- **Thread-Safe Shared Engine:** Serializes ingestion, search, LRU updates, eviction, and cleanup across MCP requests and CLI socket clients.
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## 🏗 Architecture & Flow
|
|
54
|
+
|
|
55
|
+
```mermaid
|
|
56
|
+
flowchart TD
|
|
57
|
+
subgraph Ingestion["1. Ingestion Paths"]
|
|
58
|
+
A["CLI Pipe: command 2>&1 | ephbuf"] --> D["Unix Socket (platform temp dir)"]
|
|
59
|
+
B["Agent Tool: execute_and_capture(cmd)"] --> E["Ephemeral Ring Buffer Engine"]
|
|
60
|
+
C["Agent Tool: capture_text / capture_file"] --> E
|
|
61
|
+
D --> E
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
subgraph Indexing["2. Dual Hybrid Indexing & Classification"]
|
|
65
|
+
E --> F["SQLite FTS5 (BM25 Lexical)"]
|
|
66
|
+
E --> G["FastEmbed ONNX (Dense Vectors)"]
|
|
67
|
+
E --> K["Diff & Signal Parser (File Maps & Conflict Detection)"]
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
subgraph Querying["3. Agent Query & Retrieval"]
|
|
71
|
+
F & G --> H["Reciprocal Rank Fusion (RRF)"]
|
|
72
|
+
H --> I["search_capture(query, mode='hybrid')"]
|
|
73
|
+
K --> L["Diff File Map & get_capture_slice"]
|
|
74
|
+
I --> J["Precise Context Chunk + Line Numbers"]
|
|
75
|
+
end
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## 🚀 How to Use It
|
|
81
|
+
|
|
82
|
+
### 1. From the Terminal (CLI Pipe via `ephbuf`)
|
|
83
|
+
You can pipe command output directly into the running MCP server:
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
# Pipe any command output into the buffer
|
|
87
|
+
pytest -v 2>&1 | ephbuf --label "pytest run"
|
|
88
|
+
|
|
89
|
+
# Pipe git diffs directly
|
|
90
|
+
git diff HEAD~3 | ephbuf --label "feature diff" --type diff
|
|
91
|
+
|
|
92
|
+
# Or wrap command execution
|
|
93
|
+
ephbuf --label "backend build" -- cargo build --verbose
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
The optional `--type`/`-t` hint accepts `auto` (the default), `diff`, `log`, or
|
|
97
|
+
`text`. Use `diff` for unified patches when automatic detection is ambiguous;
|
|
98
|
+
otherwise `auto` classifies diffs, build/test logs, and plain text from the
|
|
99
|
+
content and label.
|
|
100
|
+
|
|
101
|
+
`ephbuf` also bounds wrapped-command and piped-stdin capture with
|
|
102
|
+
`--max-output-bytes`; it defaults to `EPHEMERAL_MAX_BUFFER_BYTES` or 50 MiB and
|
|
103
|
+
retains the beginning and end of oversized output.
|
|
104
|
+
Use `--timeout-seconds` to stop a wrapped command after a bounded runtime; timed
|
|
105
|
+
out commands retain the output collected so far and exit with status 124.
|
|
106
|
+
Requested `max_output_bytes` and `capture_file` `max_bytes` values may not
|
|
107
|
+
exceed the configured buffer byte limit; the tools return a validation error
|
|
108
|
+
instead of silently clamping them.
|
|
109
|
+
|
|
110
|
+
### 2. From the AI Agent via MCP Tools
|
|
111
|
+
|
|
112
|
+
The agent has access to the following tools:
|
|
113
|
+
|
|
114
|
+
| Tool | Purpose |
|
|
115
|
+
| :--- | :--- |
|
|
116
|
+
| `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. |
|
|
117
|
+
| `capture_text(content, label, content_type='auto')` | Ingests text directly into the buffer. |
|
|
118
|
+
| `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. |
|
|
119
|
+
| `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. |
|
|
120
|
+
| `get_capture_slice(start_line, end_line)` | Retrieves exact line ranges to inspect full stack traces, logs, or specific diff files. |
|
|
121
|
+
| `get_capture_summary(capture_id)` | Diagnostic overview (line counts, diff file maps, error signals, preview). |
|
|
122
|
+
| `get_buffer_stats()` | Reports aggregate capture count, content bytes, lines, chunks, embedding model readiness, embedding bytes, accounted bytes, and process RSS. |
|
|
123
|
+
| `list_captures()` | Lists active captures in the ring buffer. |
|
|
124
|
+
| `clear_captures(capture_id)` | Clears buffer. |
|
|
125
|
+
|
|
126
|
+
For diff captures, `get_capture_summary` reports the detected file map,
|
|
127
|
+
addition/deletion statistics, line ranges, and merge-conflict signals. Use
|
|
128
|
+
`get_capture_slice` with those ranges to retrieve the complete file context.
|
|
129
|
+
|
|
130
|
+
### 3. Capture Hygiene
|
|
131
|
+
|
|
132
|
+
Keep captures focused so search results remain useful and the agent receives
|
|
133
|
+
only the context it needs:
|
|
134
|
+
|
|
135
|
+
- Capture one command or related output stream at a time, using a descriptive
|
|
136
|
+
label.
|
|
137
|
+
- Start with `get_capture_summary`, then use `search_capture` or
|
|
138
|
+
`get_capture_slice` for targeted retrieval instead of repeatedly recapturing
|
|
139
|
+
the same output.
|
|
140
|
+
- Use `clear_captures(capture_id)` when a capture is no longer needed; use
|
|
141
|
+
`clear_captures("all")` between unrelated investigations.
|
|
142
|
+
|
|
143
|
+
The buffer is intentionally transient and bounded by the LRU capture limit,
|
|
144
|
+
but explicit cleanup prevents recent investigations from obscuring the active
|
|
145
|
+
one before automatic eviction occurs. Its memory metrics separate captured
|
|
146
|
+
content and embedding bytes from process RSS; the unaccounted RSS value includes
|
|
147
|
+
model, index, and Python object overhead and is approximate.
|
|
148
|
+
|
|
149
|
+
The server defaults can be overridden with `EPHEMERAL_MAX_CAPTURES` and
|
|
150
|
+
`EPHEMERAL_MAX_BUFFER_BYTES`. Session-aware launchers can set
|
|
151
|
+
`EPHEMERAL_SESSION_ID` so each server/CLI pair automatically derives a unique
|
|
152
|
+
socket path; `EPHEMERAL_SOCKET_PATH` remains an explicit override. The byte
|
|
153
|
+
limit accounts for
|
|
154
|
+
captured UTF-8 content; `get_buffer_stats` also reports embedding model
|
|
155
|
+
readiness, embedding/cache settings, and process memory separately.
|
|
156
|
+
`execute_and_capture` retains the beginning and end of oversized command
|
|
157
|
+
output and marks the capture with its original byte count.
|
|
158
|
+
|
|
159
|
+
See [OPERATIONS.md](OPERATIONS.md) for deployment settings, troubleshooting,
|
|
160
|
+
release verification, and repository maintenance procedures.
|
|
161
|
+
|
|
162
|
+
---
|
|
163
|
+
|
|
164
|
+
## 🛠 Testing the Server
|
|
165
|
+
|
|
166
|
+
Set up a local development environment from a fresh checkout:
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
python3 -m venv .venv
|
|
170
|
+
.venv/bin/python -m pip install -r requirements-dev.txt
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
Run the test suite:
|
|
174
|
+
```bash
|
|
175
|
+
.venv/bin/python -m unittest test_engine.py test_capture_utils.py test_config.py test_cli.py test_server.py
|
|
176
|
+
.venv/bin/python -m unittest test_e2e_pipe.py
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
Measure focused-test coverage locally:
|
|
180
|
+
```bash
|
|
181
|
+
.venv/bin/python -m coverage run --source=. --omit='test_*.py,benchmark_concurrency.py' -m unittest test_engine.py test_capture_utils.py test_config.py test_cli.py test_server.py
|
|
182
|
+
.venv/bin/python -m coverage report
|
|
183
|
+
```
|
|
184
|
+
The current focused-test baseline is 82%; CI enforces an 82% minimum and uploads
|
|
185
|
+
the coverage reports for inspection.
|
|
186
|
+
|
|
187
|
+
GitHub Actions runs the compile check, focused tests, and end-to-end test on
|
|
188
|
+
Python 3.10 and 3.12 for pushes to `main` and pull requests. The FastEmbed
|
|
189
|
+
model is loaded on the first capture or semantic search rather than during
|
|
190
|
+
server import. Set `EPHEMERAL_EMBEDDING_MODEL` to select a compatible model and
|
|
191
|
+
`EPHEMERAL_FASTEMBED_CACHE_DIR` to control its cache directory. The model cache
|
|
192
|
+
is retained between CI runs to reduce startup time.
|
|
193
|
+
It also builds the wheel and verifies the installed `ephbuf` entry point.
|
|
194
|
+
CI audits the declared dependencies with `pip-audit` and fails if known
|
|
195
|
+
vulnerabilities are found.
|
|
196
|
+
CI resolves the runtime dependencies through `constraints.txt`; the direct
|
|
197
|
+
pins are updated only after the full test matrix passes.
|
|
198
|
+
|
|
199
|
+
Pushing a version tag such as `v0.1.1` runs the release workflow, which builds
|
|
200
|
+
wheel and source distributions, validates their metadata, verifies the
|
|
201
|
+
installed package, and uploads the artifacts for review. The tag must match
|
|
202
|
+
the version in `pyproject.toml`.
|
|
203
|
+
The workflow also uploads `SHA256SUMS`; verify a downloaded artifact with
|
|
204
|
+
`sha256sum --check SHA256SUMS` from the directory containing the files.
|
|
205
|
+
Release distributions also receive a GitHub build-provenance attestation.
|
|
206
|
+
After the repository's `pypi` environment is configured with a PyPI trusted
|
|
207
|
+
publisher, the workflow publishes the distributions to PyPI automatically.
|
|
208
|
+
|
|
209
|
+
Run the concurrency benchmark:
|
|
210
|
+
```bash
|
|
211
|
+
.venv/bin/python benchmark_concurrency.py --captures 32 --workers 8
|
|
212
|
+
```
|
|
213
|
+
The benchmark accepts `--min-ingest-per-second` and `--min-reads-per-second`
|
|
214
|
+
thresholds for regression checks. GitHub Actions runs it as an optional weekly
|
|
215
|
+
or manually dispatched job and uploads the results; it is not part of the
|
|
216
|
+
required pull-request checks.
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
# Ephemeral Buffer MCP Server (`ephemeral-buffer`)
|
|
2
|
+
|
|
3
|
+
[](https://github.com/k-rister/ephemeral-buffer-mcp/actions/workflows/ci.yml)
|
|
4
|
+
|
|
5
|
+
An ephemeral in-memory command output capture and hybrid search engine (BM25 + Semantic Embeddings) for AI coding assistants (Claude Code, Antigravity, Cursor, etc.).
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 🎯 The Problem This Solves
|
|
10
|
+
|
|
11
|
+
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:
|
|
12
|
+
1. **Context Pollution:** Ingesting megabytes of raw text blows out token limits and degrades model reasoning.
|
|
13
|
+
2. **Blind Bash Filtering:** Agents waste multiple turns running `head`, `tail`, `grep`, and `awk` trying to guess error patterns.
|
|
14
|
+
|
|
15
|
+
## 💡 The Solution
|
|
16
|
+
|
|
17
|
+
`ephemeral-buffer` provides a transient in-memory ring buffer with **Dual Hybrid Indexing** and **Content-Aware Structure Parsing**:
|
|
18
|
+
- **BM25 Lexical Search (SQLite FTS5):** For exact matches on error codes (`NullPointerException`, `ECONNREFUSED`, `exit 137`, HTTP `502`).
|
|
19
|
+
- **Dense Semantic Vector Search (FastEmbed ONNX):** For fuzzy conceptual queries (*"Where did the DB connection pool fail?"* or *"Why did authentication fail?"*).
|
|
20
|
+
- **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.
|
|
21
|
+
- **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.
|
|
22
|
+
- Successful test-run summaries such as `OK` or `25 passed` suppress fixture-only error and failure keywords while retaining the original output for search.
|
|
23
|
+
- **Reciprocal Rank Fusion (RRF):** Blends lexical and semantic ranking for high precision retrieval.
|
|
24
|
+
- **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.
|
|
25
|
+
- **Thread-Safe Shared Engine:** Serializes ingestion, search, LRU updates, eviction, and cleanup across MCP requests and CLI socket clients.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## 🏗 Architecture & Flow
|
|
30
|
+
|
|
31
|
+
```mermaid
|
|
32
|
+
flowchart TD
|
|
33
|
+
subgraph Ingestion["1. Ingestion Paths"]
|
|
34
|
+
A["CLI Pipe: command 2>&1 | ephbuf"] --> D["Unix Socket (platform temp dir)"]
|
|
35
|
+
B["Agent Tool: execute_and_capture(cmd)"] --> E["Ephemeral Ring Buffer Engine"]
|
|
36
|
+
C["Agent Tool: capture_text / capture_file"] --> E
|
|
37
|
+
D --> E
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
subgraph Indexing["2. Dual Hybrid Indexing & Classification"]
|
|
41
|
+
E --> F["SQLite FTS5 (BM25 Lexical)"]
|
|
42
|
+
E --> G["FastEmbed ONNX (Dense Vectors)"]
|
|
43
|
+
E --> K["Diff & Signal Parser (File Maps & Conflict Detection)"]
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
subgraph Querying["3. Agent Query & Retrieval"]
|
|
47
|
+
F & G --> H["Reciprocal Rank Fusion (RRF)"]
|
|
48
|
+
H --> I["search_capture(query, mode='hybrid')"]
|
|
49
|
+
K --> L["Diff File Map & get_capture_slice"]
|
|
50
|
+
I --> J["Precise Context Chunk + Line Numbers"]
|
|
51
|
+
end
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## 🚀 How to Use It
|
|
57
|
+
|
|
58
|
+
### 1. From the Terminal (CLI Pipe via `ephbuf`)
|
|
59
|
+
You can pipe command output directly into the running MCP server:
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
# Pipe any command output into the buffer
|
|
63
|
+
pytest -v 2>&1 | ephbuf --label "pytest run"
|
|
64
|
+
|
|
65
|
+
# Pipe git diffs directly
|
|
66
|
+
git diff HEAD~3 | ephbuf --label "feature diff" --type diff
|
|
67
|
+
|
|
68
|
+
# Or wrap command execution
|
|
69
|
+
ephbuf --label "backend build" -- cargo build --verbose
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
The optional `--type`/`-t` hint accepts `auto` (the default), `diff`, `log`, or
|
|
73
|
+
`text`. Use `diff` for unified patches when automatic detection is ambiguous;
|
|
74
|
+
otherwise `auto` classifies diffs, build/test logs, and plain text from the
|
|
75
|
+
content and label.
|
|
76
|
+
|
|
77
|
+
`ephbuf` also bounds wrapped-command and piped-stdin capture with
|
|
78
|
+
`--max-output-bytes`; it defaults to `EPHEMERAL_MAX_BUFFER_BYTES` or 50 MiB and
|
|
79
|
+
retains the beginning and end of oversized output.
|
|
80
|
+
Use `--timeout-seconds` to stop a wrapped command after a bounded runtime; timed
|
|
81
|
+
out commands retain the output collected so far and exit with status 124.
|
|
82
|
+
Requested `max_output_bytes` and `capture_file` `max_bytes` values may not
|
|
83
|
+
exceed the configured buffer byte limit; the tools return a validation error
|
|
84
|
+
instead of silently clamping them.
|
|
85
|
+
|
|
86
|
+
### 2. From the AI Agent via MCP Tools
|
|
87
|
+
|
|
88
|
+
The agent has access to the following tools:
|
|
89
|
+
|
|
90
|
+
| Tool | Purpose |
|
|
91
|
+
| :--- | :--- |
|
|
92
|
+
| `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. |
|
|
93
|
+
| `capture_text(content, label, content_type='auto')` | Ingests text directly into the buffer. |
|
|
94
|
+
| `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. |
|
|
95
|
+
| `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. |
|
|
96
|
+
| `get_capture_slice(start_line, end_line)` | Retrieves exact line ranges to inspect full stack traces, logs, or specific diff files. |
|
|
97
|
+
| `get_capture_summary(capture_id)` | Diagnostic overview (line counts, diff file maps, error signals, preview). |
|
|
98
|
+
| `get_buffer_stats()` | Reports aggregate capture count, content bytes, lines, chunks, embedding model readiness, embedding bytes, accounted bytes, and process RSS. |
|
|
99
|
+
| `list_captures()` | Lists active captures in the ring buffer. |
|
|
100
|
+
| `clear_captures(capture_id)` | Clears buffer. |
|
|
101
|
+
|
|
102
|
+
For diff captures, `get_capture_summary` reports the detected file map,
|
|
103
|
+
addition/deletion statistics, line ranges, and merge-conflict signals. Use
|
|
104
|
+
`get_capture_slice` with those ranges to retrieve the complete file context.
|
|
105
|
+
|
|
106
|
+
### 3. Capture Hygiene
|
|
107
|
+
|
|
108
|
+
Keep captures focused so search results remain useful and the agent receives
|
|
109
|
+
only the context it needs:
|
|
110
|
+
|
|
111
|
+
- Capture one command or related output stream at a time, using a descriptive
|
|
112
|
+
label.
|
|
113
|
+
- Start with `get_capture_summary`, then use `search_capture` or
|
|
114
|
+
`get_capture_slice` for targeted retrieval instead of repeatedly recapturing
|
|
115
|
+
the same output.
|
|
116
|
+
- Use `clear_captures(capture_id)` when a capture is no longer needed; use
|
|
117
|
+
`clear_captures("all")` between unrelated investigations.
|
|
118
|
+
|
|
119
|
+
The buffer is intentionally transient and bounded by the LRU capture limit,
|
|
120
|
+
but explicit cleanup prevents recent investigations from obscuring the active
|
|
121
|
+
one before automatic eviction occurs. Its memory metrics separate captured
|
|
122
|
+
content and embedding bytes from process RSS; the unaccounted RSS value includes
|
|
123
|
+
model, index, and Python object overhead and is approximate.
|
|
124
|
+
|
|
125
|
+
The server defaults can be overridden with `EPHEMERAL_MAX_CAPTURES` and
|
|
126
|
+
`EPHEMERAL_MAX_BUFFER_BYTES`. Session-aware launchers can set
|
|
127
|
+
`EPHEMERAL_SESSION_ID` so each server/CLI pair automatically derives a unique
|
|
128
|
+
socket path; `EPHEMERAL_SOCKET_PATH` remains an explicit override. The byte
|
|
129
|
+
limit accounts for
|
|
130
|
+
captured UTF-8 content; `get_buffer_stats` also reports embedding model
|
|
131
|
+
readiness, embedding/cache settings, and process memory separately.
|
|
132
|
+
`execute_and_capture` retains the beginning and end of oversized command
|
|
133
|
+
output and marks the capture with its original byte count.
|
|
134
|
+
|
|
135
|
+
See [OPERATIONS.md](OPERATIONS.md) for deployment settings, troubleshooting,
|
|
136
|
+
release verification, and repository maintenance procedures.
|
|
137
|
+
|
|
138
|
+
---
|
|
139
|
+
|
|
140
|
+
## 🛠 Testing the Server
|
|
141
|
+
|
|
142
|
+
Set up a local development environment from a fresh checkout:
|
|
143
|
+
|
|
144
|
+
```bash
|
|
145
|
+
python3 -m venv .venv
|
|
146
|
+
.venv/bin/python -m pip install -r requirements-dev.txt
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
Run the test suite:
|
|
150
|
+
```bash
|
|
151
|
+
.venv/bin/python -m unittest test_engine.py test_capture_utils.py test_config.py test_cli.py test_server.py
|
|
152
|
+
.venv/bin/python -m unittest test_e2e_pipe.py
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
Measure focused-test coverage locally:
|
|
156
|
+
```bash
|
|
157
|
+
.venv/bin/python -m coverage run --source=. --omit='test_*.py,benchmark_concurrency.py' -m unittest test_engine.py test_capture_utils.py test_config.py test_cli.py test_server.py
|
|
158
|
+
.venv/bin/python -m coverage report
|
|
159
|
+
```
|
|
160
|
+
The current focused-test baseline is 82%; CI enforces an 82% minimum and uploads
|
|
161
|
+
the coverage reports for inspection.
|
|
162
|
+
|
|
163
|
+
GitHub Actions runs the compile check, focused tests, and end-to-end test on
|
|
164
|
+
Python 3.10 and 3.12 for pushes to `main` and pull requests. The FastEmbed
|
|
165
|
+
model is loaded on the first capture or semantic search rather than during
|
|
166
|
+
server import. Set `EPHEMERAL_EMBEDDING_MODEL` to select a compatible model and
|
|
167
|
+
`EPHEMERAL_FASTEMBED_CACHE_DIR` to control its cache directory. The model cache
|
|
168
|
+
is retained between CI runs to reduce startup time.
|
|
169
|
+
It also builds the wheel and verifies the installed `ephbuf` entry point.
|
|
170
|
+
CI audits the declared dependencies with `pip-audit` and fails if known
|
|
171
|
+
vulnerabilities are found.
|
|
172
|
+
CI resolves the runtime dependencies through `constraints.txt`; the direct
|
|
173
|
+
pins are updated only after the full test matrix passes.
|
|
174
|
+
|
|
175
|
+
Pushing a version tag such as `v0.1.1` runs the release workflow, which builds
|
|
176
|
+
wheel and source distributions, validates their metadata, verifies the
|
|
177
|
+
installed package, and uploads the artifacts for review. The tag must match
|
|
178
|
+
the version in `pyproject.toml`.
|
|
179
|
+
The workflow also uploads `SHA256SUMS`; verify a downloaded artifact with
|
|
180
|
+
`sha256sum --check SHA256SUMS` from the directory containing the files.
|
|
181
|
+
Release distributions also receive a GitHub build-provenance attestation.
|
|
182
|
+
After the repository's `pypi` environment is configured with a PyPI trusted
|
|
183
|
+
publisher, the workflow publishes the distributions to PyPI automatically.
|
|
184
|
+
|
|
185
|
+
Run the concurrency benchmark:
|
|
186
|
+
```bash
|
|
187
|
+
.venv/bin/python benchmark_concurrency.py --captures 32 --workers 8
|
|
188
|
+
```
|
|
189
|
+
The benchmark accepts `--min-ingest-per-second` and `--min-reads-per-second`
|
|
190
|
+
thresholds for regression checks. GitHub Actions runs it as an optional weekly
|
|
191
|
+
or manually dispatched job and uploads the results; it is not part of the
|
|
192
|
+
required pull-request checks.
|