Model Context Protocol (MCP) server in Rust 1.95 exposing POSIX baseutils-equivalent
OS management to LLM agents over STDIO. Ten bounded contexts: filesystem-query,
filesystem-mutation, process, system-info, text-processing, archive, job,
subprocess, network-info, launch (declarative process orchestration, feature-gated).
61 tools with the launch feature enabled (51 without). Built and verified on both
macOS and Linux.
- Rust 1.95+ (
rustup install 1.95 && rustup default 1.95). - macOS 11+ or Linux kernel 5.6+ for tier-1 PathJail (otherwise userspace tier with WARN).
mise(optional, manages Rust + cargo tools automatically, includingcargo-nextestandcargo-machete).
mise trust && mise install # if mise is available
cargo build --workspace --release
# With the launch orchestration BC (launch.init/list/trust/up/status/logs/restart/reload/down):
cargo build --release -p substrate-mcp-server --features launchThe release binary lands at target/release/substrate.
Create substrate.toml at the project root or ~/.config/substrate/config.toml:
[policy]
roots = ["/path/to/sandbox"]
[logging]
level = "info"
target = "stderr"
[security]
refuse_degraded_jail = true
[timeouts]
global_default_seconds = 30
shutdown_drain_secs = 5Run the server (it speaks JSON-RPC 2.0 over STDIO):
./target/release/substrateprintf '%s\n%s\n' \
'{"jsonrpc":"2.0","method":"initialize","id":1,"params":{"protocolVersion":"2025-11-25","capabilities":{},"clientInfo":{"name":"test","version":"0.0.1"}}}' \
'{"jsonrpc":"2.0","method":"tools/call","id":2,"params":{"name":"sys_hostname","arguments":{}}}' \
| ./target/release/substrateThe following flowchart shows the principal actors and their relationships at the system boundary.
flowchart LR
OP[Operator / Human] -->|elicitation forms| HOST[MCP Host\ne.g. Claude Desktop]
AGENT[LLM Agent] -->|MCP JSON-RPC| HOST
HOST -->|STDIO stdin/stdout| SRV[substrate\nMCP server]
SRV -->|syscalls| FS[Local Filesystem]
SRV -->|procfs / sysctl| OS[OS / Kernel]
The following sequence diagram shows the smoke-test interaction from connection through a tool call.
Note: tool names use _ as separator (e.g. sys_hostname), not ..
sequenceDiagram
participant C as MCP Client
participant S as substrate server
C->>S: initialize (protocolVersion, clientInfo)
S-->>C: InitializeResult (capabilities, serverInfo)
C->>S: tools/list
S-->>C: ListToolsResult (tool cards array)
C->>S: tools/call (sys_hostname, args={})
S-->>C: CallToolResult (content text + structuredContent)
This repository uses spec-as-source-of-truth. All architectural decisions live
under docs/arch/ as MADR 4.0 ADRs, CUE schemas, Gherkin features, Rego policies,
Structurizr DSL, OpenSLO definitions, AsyncAPI spec, and a TLA+ formal model.
Read in order:
- Architecture Overview — entry point for the spec
- Glossary — ubiquitous-language vocabulary
- ADR-0002 — strategic DDD and the ten bounded contexts (filesystem-query, filesystem-mutation, process, system-info, text-processing, archive, job, subprocess, network-info, launch)
- ADR-0040 — async job control-plane (Push/Pull dual channel)
- ADR-0063 — launch BC overview; read alongside ADR-0064..0069 for the trust model, dependency graph, event stream, concurrency topology, and the detached-supervisor design
spec validate --lane full # conftest/vale/SLO/AsyncAPI/TLC validators, on top of the fast+default lanes
cargo clippy --locked --workspace --all-targets --all-features -- -D warnings
cargo nextest run --locked --workspace --all-features --no-fail-fastVerify on both platforms when touching any #[cfg(target_os = "linux")] /
#[cfg(target_os = "macos")] code path — a clippy pass on only one platform can
hide a genuine field-width divergence in nix/libc types (e.g. mode_t is
u32 on Linux but u16 on macOS/BSD), and Linux-only code paths (the
openat2-based path jail, statx-tier filesystem walkers, procfs-based
process/system-info readers) have historically gone unexercised for long
stretches between real-Linux verification passes.
A JobRegistry.tla model lives at docs/arch/formal/JobRegistry.tla. To enable
the run_tlc validator:
# Download tla2tools.jar once (see tools/README.md)
curl -L -o tools/tla2tools.jar \
https://github.com/tlaplus/tlaplus/releases/latest/download/tla2tools.jar
# Then run the spec full lane -- TLC will be invoked automatically
spec validate --lane fullThe TLA2TOOLS_JAR environment variable is auto-set by mise when
tools/tla2tools.jar is present. See tools/README.md for details.
Dual-licensed under MIT OR Apache-2.0. See LICENSE-MIT and LICENSE-APACHE.