sim-lib-mcp 0.1.0-rc.1

Library-only MCP surface projection for SIM.
Documentation
1
2
3
4
5
6
7
8
use sim_kernel::{Cx, Result};

use crate::McpLib;

/// Installs [`McpLib`] into `cx`, loading it once if not already present.
pub fn install_mcp_lib(cx: &mut Cx) -> Result<()> {
    sim_lib_core::install_once(cx, &McpLib).map(|_| ())
}