jumperless-mcp 0.1.0

MCP server for the Jumperless V5 — persistent USB-serial bridge exposing the firmware API to LLMs
//! Tool handlers for the Jumperless MCP subsystem.
//!
//! Each submodule provides the [`crate::base::ToolDescriptor`] definitions
//! and a `descriptors()` function for the owning [`Subsystem::tools`] impl.
//! Invocation dispatch lives in `main.rs` via [`Jumperless::invoke`].

pub mod analog;
pub mod connections;
pub mod context;
pub mod core;
pub mod dev;
pub mod digital;
pub mod library;
pub mod oled;
pub mod overlay;
pub mod power;
pub mod probe;
pub mod slot;
pub mod state;
pub mod wavegen;