| I've been vibe-coding a library / protocol for building and communicating with locally running agent tools via Unix's named pipe mechanism and have just released the first version! I'd love some feedback: am I onto a good idea here or is it totally unnecessary? https://github.com/stefanwebb/named-pipes From the readme:
[link] [comments] |
Better alternative to CLI and MCP for local tools: Seeking feedback on my open-source project
Reddit r/LocalLLaMA / 4/13/2026
💬 OpinionDeveloper Stack & InfrastructureSignals & Early TrendsIdeas & Deep AnalysisTools & Practical Usage
Key Points
- The author released an open-source library/protocol (named-pipes) aimed at enabling communication between locally running agent tools using Unix named pipes to reduce latency and overhead.
- The approach is positioned as a better fit than per-invocation CLI tools because it keeps a server process resident in memory, avoiding repeated startup costs and state reloads for heavy tasks like LLM inference or browser automation.
- It is also contrasted with MCP’s JSON-RPC/discovery and mediator-layer architecture, arguing that for fully self-hosted single-machine agents, those layers add unnecessary complexity.
- The project’s core concept is that an orchestrator sends messages via a file-path interface and receives replies directly, bypassing both network stack complexity and framework intermediaries.




