Validation * Validation tier: Tier 2R - post-review conflict/base refresh of an existing shared runtime integration PR; the manual conflict scope was README.md, with targeted Flash-MoE/runtime checks rerun on the final rebased diff. * git fetch --no-tags origin main:refs/remotes/origin/main: PASS * git rebase origin/main: PASS, resolved conflict in README.md. * git diff --check origin/main...HEAD: PASS * git diff --cached --check: PASS * cargo fmt --all -- --check: PASS * LLAMA_STAGE_BUILD_DIR=/Users/Funtland/Downloads/mesh-llm/.deps/llama-build/build-stage-abi-metal rustup run stable cargo test -p mesh-llm-host-runtime flash_moe --lib: PASS, 13 passed, 0 failed * LLAMA_STAGE_BUILD_DIR=/Users/Funtland/Downloads/mesh-llm/.deps/llama-build/build-stage-abi-metal rustup run stable cargo check -p mesh-llm: PASS * Ledger: not applicable - not required for selected validation tier/change family. * Version: not applicable - not required for selected validation tier/change family. * Not run: just build - not required for this conflict/base-refresh tier; targeted Rust checks covered the affected runtime paths and GitHub CI will rerun the final PR SHA. * Not run: full cargo test -p mesh-llm-host-runtime --lib - not required for selected tier; targeted Flash-MoE tests covered the changed plugin/runtime path. Rollback * git revert HEAD |
||
|---|---|---|
| .. | ||
| flash-moe.md | ||
| PLAN.md | ||
| README.md | ||
| telemetry.md | ||
Plugins
Use this architecture reference to build and review mesh-llm plugins.
It describes the target architecture, not just the code as it exists today.
As implementation lands, this document should be updated to match the intended end state and the concrete protocol and runtime decisions that have been made.
Plugin-specific documentation:
- Flash-MoE - built-in OpenAI-compatible backend adapter for single-node SSD expert streaming
- Telemetry - built-in OTLP metrics-only runtime and routing telemetry
The main goals are:
- keep
mesh-llmdecoupled from specific plugins - let bundled plugins be auto-registered without special-casing product behavior
- make MCP and HTTP first-class host projections
- support large request and response bodies without blocking control traffic
- keep plugin author boilerplate low
Design Summary
A plugin is a local service process launched by mesh-llm.
The system has three core pieces:
- one long-lived control connection per plugin process
- zero or more short-lived negotiated streams for large or streaming data
- one declarative plugin manifest that the host
staplerprojects into MCP, HTTP, and optional promoted product APIs
mesh-llm remains the owner of:
- plugin lifecycle
- local IPC
- stapling manifest-declared services onto host-facing protocols
- HTTP serving
- MCP serving
- capability routing
- mesh participation and peer-to-peer transport
A plugin owns:
- its own feature logic
- local state
- operation handlers
- resource handlers
- prompt handlers
- plugin-specific mesh channel semantics
Plugins do not need to implement raw MCP or raw HTTP servers.
The stapler is the host projection layer that turns plugin manifests into exposed MCP and HTTP surfaces.
High-Level Model
The plugin system is projection-oriented at the DSL level and service-oriented at the runtime level.
Plugin authors think in terms of the host surfaces they contribute to:
mcphttpinferenceprovides
The host runtime still executes native service invocations internally, but the author-facing DSL is organized by the surface the plugin contributes to.
This means:
- local MCP tools, resources, prompts, and completions live under
mcp - attached external MCP servers also live under
mcp - local HTTP routes live under
http - attached or plugin-hosted inference backends live under
inference - stable product capabilities live under
provides
There is no separate top-level services section in the preferred DSL.
Core Principles
1. Bundled Plugins Are Allowed
Plugins shipped in this source tree may be auto-registered by the host.
That is acceptable coupling.
What is not acceptable is embedding one plugin's runtime behavior directly into core mesh logic. Core mesh transport and state should stay generic.
2. One Control Connection, Many Data Streams
Each plugin process has one long-lived control connection.
Use the control connection for:
- initialize / health / shutdown
- manifest registration
- small RPC-style requests
- mesh event delivery
- stream negotiation
- cancellation
Do not use the control connection for large uploads, downloads, or long-lived streaming responses.
For large or streaming payloads, the host and plugin negotiate a short-lived side stream.
3. MCP Is A Host Projection
mesh-llm is the MCP server.
Plugins do not need to implement MCP JSON-RPC directly. They declare MCP-facing services in the manifest, and the host stapler exposes them over MCP.
4. HTTP Is A Host Projection
mesh-llm owns the HTTP server.
Plugins may declare HTTP bindings, but they do not need to run an HTTP server themselves. The host stapler maps HTTP requests onto plugin operations and resources.
5. Capabilities Are Stable Product Contracts
When mesh-llm wants a stable product API such as /api/objects, core should depend on a named capability like object-store.v1, not on a specific plugin ID like blobstore.
Architecture
Control Session
There is one long-lived control session between host and plugin.
The control session is used for:
- plugin startup and manifest exchange
- health checks
- native service invocation requests and responses
- plugin-to-host notifications
- host-to-plugin mesh events
- opening and closing streams
- cancellation and error reporting
The control session should stay responsive even while the plugin is sending or receiving large payloads.
The native runtime contract is service-oriented, not MCP-oriented.
The host invokes services such as:
- operations
- prompts
- resources
- completions
MCP method names like tools/call and prompts/get are projection-layer concerns. They are not the preferred host/plugin runtime contract.
Streams
Streams are short-lived negotiated channels for a single request, response, or transfer.
They are opened via the control session and then carry data independently.
Streams are used for:
- large HTTP request bodies
- large HTTP responses
- streaming uploads and downloads
- server-sent events or similar long-lived responses
- future bulk data flows between host and plugin
On Unix, streams map to short-lived Unix sockets.
On Windows, streams map to short-lived named pipes.
The protocol concept is stream, not socket, so the transport binding remains platform-specific.
Why Streams Exist
The current single-socket framed-envelope design is vulnerable to head-of-line blocking. Even chunked transfer traffic still competes with health checks, tool calls, mesh events, and other control messages on the same queue.
This architecture avoids that by separating:
- control plane traffic
- bulk and streaming data traffic
Manifest
On startup, a plugin returns a manifest that declares what it provides to the host.
Conceptually, the manifest contains:
- plugin identity and version
- provided capabilities
- MCP contributions
- HTTP contributions
- inference contributions
- any mesh channel declarations the plugin needs
The manifest is the source of truth for host projections.
Plugin Author Experience
The primary design goal is very low boilerplate.
The preferred DSL is surface-first:
providesmcphttpinferencemeshevents
Lifecycle hooks stay local to the plugin definition rather than becoming manifest items:
startup_policyhealthon_initializedon_channel_messageon_mesh_event
Each section is self-contained. If a plugin contributes something to a host surface, it is declared in the section for that surface.
Example:
use mesh_llm_plugin::{
capability, plugin_server_info, PluginMetadata,
http::{get, post},
inference::openai_http,
mcp::{external_stdio, prompt, resource, tool},
PluginStartupPolicy,
};
let plugin = mesh_llm_plugin::plugin! {
metadata: PluginMetadata::new(
"notes",
"1.0.0",
plugin_server_info(
"notes",
"1.0.0",
"Notes",
"Shared notes services",
None::<String>,
),
),
startup_policy: PluginStartupPolicy::PrivateMeshOnly,
provides: [
capability("notes.v1"),
capability("search.v1"),
],
mesh: [
mesh_llm_plugin::mesh::channel("notes.v1"),
],
events: [
mesh_llm_plugin::events::peer_up(),
],
mcp: [
tool("search")
.description("Search notes")
.input::<SearchArgs>()
.handle(search),
resource("notes://latest")
.name("Latest Notes")
.handle(read_latest),
prompt("summarize_notes")
.description("Summarize recent notes")
.handle(summarize_notes),
external_stdio("filesystem", "npx")
.arg("-y")
.arg("@modelcontextprotocol/server-filesystem"),
],
http: [
get("/search")
.description("Search notes")
.input::<SearchArgs>()
.handle(search),
post("/notes")
.description("Create a note")
.input::<PostArgs>()
.handle(post_note),
],
inference: [
openai_http("local-llm", "http://127.0.0.1:8080/v1")
.managed_by_plugin(false),
],
health: |_context| {
Box::pin(async move { Ok("ok".to_string()) })
},
on_initialized: |context| {
Box::pin(async move {
context
.send_json_channel(
"notes.v1",
String::new(),
"notes",
&NotesMessage::SyncRequest,
)
.await
})
},
on_channel_message: |message, context| {
Box::pin(async move {
handle_notes_channel(message, context).await
})
},
on_mesh_event: |event, context| {
Box::pin(async move {
handle_notes_mesh_event(event, context).await
})
},
};
In this model:
mcpcontains both local MCP contributions and attached external MCP servershttpcontains local HTTP contributionsinferencecontains both attached external inference endpoints and plugin-hosted inference providersprovidesdeclares stable capability contracts that core product routes can depend onmeshdeclares which mesh channels the plugin is allowed to receive and sendeventsdeclares which mesh events the host may deliver to the plugin
Event delivery is allowlist-based:
- no
meshdeclaration means no channel delivery - no
eventsdeclaration means no mesh events - plugins only receive the event kinds they explicitly declare
The runtime and stapler handle:
- schema exposure
- MCP projection
- HTTP projection
- request validation
- stream negotiation
- transport details
- host-side routing and aggregation
Plugin authors should not manually implement:
- MCP
tools/list - MCP
tools/call - MCP
resources/read - HTTP routing
- control-plane socket negotiation
Internal RPC Plugins
Most plugins should use plugin!.
Host-private plumbing services that need raw RPC methods rather than surfaced MCP, HTTP, or inference declarations should use InternalRpcPluginBuilder.
This is the escape hatch for internal-only services such as blobstore. It keeps raw host RPC separate from the normal manifest-driven plugin surface.
Streaming
Streaming is explicit in the DSL.
For HTTP bindings, the preferred modifiers are:
.stream_request().stream_response().sse()
These declare whether the request body, response body, or response format requires side-stream transport.
External Endpoints
Plugins may register external services without proxying all traffic through the plugin process.
This is a control-plane declaration, not a request proxying requirement.
In practice:
- attached external MCP servers are declared in the
mcpsection - attached or plugin-hosted inference backends are declared in the
inferencesection
mesh-llm then talks to those services directly when appropriate.
This keeps heavy data-plane traffic out of plugin IPC.
MCP Contributions
The mcp section may contain both:
- local MCP-facing items implemented by the plugin
- attached external MCP servers
Preferred external forms include:
external_stdio(...)external_http(...)external_tcp(...)external_unix_socket(...)
External MCP names are namespaced as:
plugin_name.method
Inference Contributions
The inference section may contain both:
- attached external OpenAI-compatible endpoints
- plugin-hosted inference providers
Preferred forms include:
openai_http(...)for attached external endpointsprovider(...)for plugin-hosted backends
Why Endpoint Registration Exists
Some services already speak a protocol that mesh-llm knows how to use directly.
Examples:
- a local OpenAI-compatible inference server
- an external MCP server reachable over stdio, streamable HTTP, Unix socket, named pipe, or TCP
- a plugin-hosted inference runtime such as an MLX-backed local server
In these cases, the plugin should remain the control-plane owner for:
- discovery
- lifecycle
- readiness
- availability
But mesh-llm should own the data plane when possible.
Health And Availability
Endpoint health is separate from plugin health.
If an endpoint health check fails:
- the endpoint becomes unavailable
- the endpoint is removed from routing or aggregation
- the plugin remains loaded
- the plugin is not marked disabled
- the host keeps checking health
If health returns:
- the endpoint becomes available again automatically
This is important because a plugin may be healthy while its managed or discovered service is:
- starting
- restarting
- temporarily unhealthy
- reloading a model
- intentionally stopped
The host should treat plugin liveness and endpoint liveness as separate concerns.
Recommended State Model
Conceptually, the system should track at least:
- plugin state
- endpoint state
- model or route availability
Suggested plugin states:
startingrunningdegradeddisconnectedfailed
Suggested endpoint states:
unknownstartinghealthyunhealthyunavailable
Suggested routed availability states:
advertisedroutabledrainingunavailable
Routing decisions should depend on endpoint health, not just plugin process health.
MCP
MCP is implemented by the host, not by individual plugins.
The plugin author marks which services should appear in MCP:
tool(...)resource(...)resource_template_service(...)prompt(...)completion(...)
The host then synthesizes:
tools/listtools/callresources/listresources/readprompts/listprompts/get- completions where applicable
External MCP endpoints may also be aggregated into the host's MCP surface via the endpoints: declarations described above.
MCP Naming
By default, tool, resource, and prompt names should be plugin-namespaced.
Examples:
- tool:
blackboard.feed - tool:
blackboard.post - resource:
blackboard://snapshot - prompt:
blackboard.status_brief
Friendly aliases may be added for bundled plugins, but the canonical identity should remain namespaced to avoid collisions.
MCP Streaming
MCP-facing operations may be:
- buffered
- streaming input
- streaming output
- streaming input and output
For streaming operations, the host uses negotiated side streams internally rather than pushing large data through the control connection.
HTTP Bindings
Plugins may declare HTTP bindings as part of the manifest.
These bindings let a plugin feel native over HTTP without requiring custom host route code for each plugin.
Default Mounting
Plugin-defined HTTP bindings should be mounted under a plugin-owned namespace by default.
Examples:
/api/plugins/blackboard/feed/api/plugins/blackboard/post/api/plugins/object-store/objects
This avoids collisions and keeps plugin-specific APIs out of the top-level product namespace unless explicitly promoted.
Promoted Product Routes
Some routes may become stable product APIs owned by mesh-llm, for example:
/api/objects
These routes should be backed by named capabilities, not by hard-coded plugin IDs.
Example:
- top-level route:
/api/objects - required capability:
object-store.v1 - provider plugin: whichever plugin the host resolves for that capability
This keeps product APIs stable while allowing the backing plugin to change.
External endpoints do not automatically become HTTP routes. They are service registrations that the host may use for routing or aggregation according to their endpoint kind.
Buffered vs Streamed HTTP
HTTP bindings may be declared as:
- buffered request / buffered response
- streamed request / buffered response
- buffered request / streamed response
- streamed request / streamed response
The host decides whether to keep the invocation on the control channel or negotiate a side stream based on the binding mode and payload size.
Streams And Large Transfers
Large payloads must not ride the main control connection.
Instead, the control session negotiates a short-lived stream for the transfer.
Conceptual flow:
- host sends
OpenStream - plugin accepts
- host and plugin establish a short-lived local stream
- request or response bytes flow on that stream
- either side may cancel
- stream is torn down and cleaned up
This design supports:
- 10 GB uploads
- large downloads
- long-lived streaming responses
- future websocket-like or SSE-style responses
without blocking health checks or other control traffic.
Suggested Control Messages
The exact wire format is still open, but the protocol should support concepts like:
InitializeInitializeResponse { manifest }HealthShutdownInvokeInvokeResultNotifyMeshEventOpenStreamOpenStreamResultCancelStreamStreamError
The stream protocol itself may be raw bytes or lightly framed bytes, depending on the use case.
Capabilities
Capabilities let core depend on behavior rather than on plugin names.
Examples:
object-store.v1mesh-blackboard.v1artifact-cache.v1model-catalog-provider.v1
Capabilities are used when:
- core needs a stable product contract
- multiple plugins could satisfy the same role
- the host wants to promote a route into the top-level API
Capabilities are not required for every plugin. They are mainly for shared contracts that mesh-llm itself depends on.
Endpoint registration is related but distinct:
- capabilities express stable contracts that core may depend on
- endpoints express concrete service instances that the host can talk to directly
An endpoint may satisfy a capability, but the two ideas should remain separate in the design.
Mesh Channels
Plugins may declare mesh channels for plugin-specific peer-to-peer coordination.
These should use the generic plugin mesh transport rather than dedicated core stream types for individual plugins.
Core should not embed plugin-specific wire protocols in the main mesh transport when the behavior can live behind the generic plugin channel mechanism.
What The Host Owns
The host is responsible for:
- launching plugins
- registering bundled plugins
- validating plugin identity
- keeping the control session alive
- stream negotiation and cleanup
- request validation
- HTTP mounting
- MCP exposure
- capability resolution
- route collision detection
- permissions and policy enforcement
What Plugins Own
A plugin is responsible for:
- declaring its manifest
- implementing handlers
- handling its own local state
- reading and writing stream payloads when invoked
- implementing any plugin-specific business logic
Non-Goals
The plugin system should not require each plugin to:
- run its own HTTP server
- run its own MCP server
- manually negotiate Unix socket paths in application code
- hard-code core route registration in
mesh-llm
The plugin system should also avoid:
- top-level product APIs that are secretly bound to one plugin ID
- plugin-specific core mesh stream types when generic plugin channels are sufficient
Open Questions
The following are intentionally left open for implementation design:
- exact manifest schema
- exact control protocol message shapes
- exact stream framing format
- capability provider selection when multiple plugins implement the same capability
- whether promoted product routes are configured statically or negotiated dynamically
- how auth and policy rules are expressed for plugin-defined HTTP bindings
Architecture Baseline
- bundled plugins may be auto-registered
- core mesh logic remains plugin-agnostic
- MCP and HTTP are first-class host projections
- product APIs depend on capabilities, not plugin IDs
- large data flows use negotiated side streams, not the control socket