opencode-orchestrator-mcp 0.6.3

MCP server for orchestrator-style agents to spawn and manage OpenCode sessions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `OpenCode` Orchestrator MCP - library exports for integration testing.

#[cfg(not(unix))]
compile_error!(
    "opencode_orchestrator_mcp only supports Unix-like platforms (Linux/macOS). Windows is not supported."
);

pub mod config;
pub mod error;
pub mod logging;
pub mod server;
pub mod token_tracker;
pub mod tools;
pub mod types;
pub mod version;