Mesh LLM: Distributed AI Computing on Iroh – Run LLMs Across Your Own GPUs
Mesh LLM is a distributed AI compute platform that pools GPUs and memory across multiple machines and exposes the whole thing as one OpenAI-compatible API at http://localhost:9337/v1. You can start one node, add more later, and let the mesh decide whether a model runs locally, routes to a peer that already has it loaded, or splits across several machines.
How It Works
Under the hood, Mesh LLM uses iroh endpoints for identity (public key) and networking. There is no central server. iroh handles NAT traversal, hole-punching, and relay fallback via QUIC connections. The protocol defines three ALPNs:
mesh-llm/1– main mesh (gossip, routing, HTTP tunnels, plugin channels)mesh-llm-control/1– owner control plane (config sync, ownership attestation)skippy-stage/2– latency-sensitive activation transport for split models
Inside the main connection, all communication is multiplexed over bidirectional QUIC streams tagged by a single leading byte:
0x01GOSSIP – peer announcements (models, GPU, RTT, capabilities)0x04TUNNEL_HTTP – inference requests proxied to a peer0x05ROUTE_REQUEST – query which models a peer hosts0x06PEER_DOWN – dead-peer notification0x07PEER_LEAVING – graceful shutdown0x08PLUGIN_CHANNEL – plugin RPC0x0eDIRECT_PATH_REQUEST – share direct addresses for NAT traversal
Split Mode ("Skippy")
For models too big for any single GPU (e.g., 235B mixture-of-experts), Mesh LLM has a split mode that partitions a model by layer ranges into stages. Layers 0–15 run on one node, 16–31 on the next, and so on. Activations flow from one stage to the next via QUIC streams. Several modest machines can together run a model none could hold alone.
Pluggable Architecture
Plugins declare their capabilities in a manifest. The runtime starts them, routes calls, and exposes their capabilities over MCP, HTTP, inference, and mesh events. The catalog ships with 40+ models — from half-a-billion-parameter models that fit on a laptop to the 235B giants.
Who It's For
Teams that want to control their own AI infrastructure: share GPU compute privately or publicly, run bigger models without buying bigger hardware, and avoid vendor lock-in. Any OpenAI client can point at localhost:9337 and stop caring where the work actually happens.
📖 Read the full source: HN LLM Tools
👀 See Also

Spectyra Plugin for OpenClaw: Real-Time AI Cost Optimization by Analyzing Full Request Flow
Spectyra plugin reduces AI API costs by surfacing hidden waste like repeated calls, excessive context, and expensive model misuse in real time.

Bitcoin MCP Server with 43 Tools for AI Coding Agents
bitcoin-mcp is an MCP server with 43 Bitcoin tools including fee advisors, mempool analysis, and inscription detection. It works with Claude Desktop, Claude Code, Cursor, VS Code, and Windsurf using live data from APIs or local nodes.

Claude Code Undocumented Features: Hooks, Memory, YOLO Classifier & More
The Claude Code source reveals hidden configs: YOLO Classifier for auto-permission, hooks that rewrite commands, persistent agent memory, auto-mode rules in plain English, and dream loops.

Real-time stock analysis added to Claude Desktop via MCP server
A developer built an MCP server called agent-toolbelt that adds real-time stock analysis capabilities to Claude Desktop and Claude Code. The tool provides five specific analysis functions and works with a single command installation.