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

Opendesk: MCP + SOM algorithm for AI desktop control via Claude Code
Opendesk gives AI agents eyes and hands on your desktop via an MCP server with a custom SOM algorithm. Integrates with Claude Code or any agentic harness for mouse/keyboard control, learning, replay, and scheduling.

How I built a 3D scroll website in 2 hours using Claude Code and Veo
A developer built a 3D scroll website in 2 hours using Claude Code, Veo video generation, and a custom 'video to website' skill. Full code and live demo shared.

pxpipe: Cut Claude Code Token Usage 60% by Rendering Context as Images
pxpipe is a local proxy that renders bulky context (system prompts, tool docs, history) into compact PNGs, cutting input tokens ~10x and costs ~60% on token-dense workloads.

Mind Protocol: Open-source system gives Claude persistent memory and real-time biometric integration
Mind Protocol is an open-source system where Claude runs continuously as an autonomous companion with persistent memory across all sessions and real-time Garmin watch data injected into every conversation. The architecture uses Claude Code as the core engine with an orchestrator that spawns parallel sessions and manages lifecycle.