smix-mcp 2.1.0

smix — MCP server exposing smix tools to Claude Code via stdio.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The parts of the MCP server worth testing on their own.
//!
//! The binary wires these into an `rmcp` router and talks stdio; what lives
//! here is the translation between what an agent writes and what the SDK
//! takes.

#![deny(missing_docs)]
#![forbid(unsafe_code)]

mod selector_params;
pub mod session;

pub use selector_params::{SelectorParams, ocr_text_of};
pub use session::{Bound, SessionState, UNBOUND_HINT};