fix(mcp): isolate stdio wire protocol, add cache-first embedder fast path and background warmup - #194
Merged
Coding-Dev-Tools merged 2 commits intoSep 3, 2026
Conversation
…path and background warmup - Redirect sys.stdout to sys.stderr in stdio MCP mode so library prints/warnings never corrupt the JSON-RPC wire - Load cached SentenceTransformer models with local_files_only=True first to eliminate network roundtrips and timeouts - Make service() singleton initialization thread-safe and warm up in a background daemon thread - Add embedder health check to 'engraphis-init --check' and provide 'engraphis-init --prefetch' command
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
Coding-Dev-Tools
deleted the
fix/mcp-stdio-wire-isolation-and-cache-fastpath
branch
September 3, 2026 23:45
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes low-level stream write failures and child process disconnection errors (such as \Error: write EOF\ / \UV_EOF\ at \WriteWrap.onWriteComplete) encountered by Node.js MCP harnesses (Command Code, Cursor, Claude Code, Cline, etc.) when calling Engraphis tools.
Root Causes & Solutions
Stdio Wire Protocol Contamination:
First-Call Cold Start & Network Hangs:
ecall) paid the full initialization and network check cost inside the agent's turn. Hugging Face checks could hang on restricted networks.
Pre-flight Health Verification & Prefetching:
Verification
uff check .\ passed with 0 errors.