ssh-mcp-rs 2.1.0

MCP server exposing SSH control for Linux systems via Model Context Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Validation helpers for server operations.
//!
//! This module contains pure validation functions extracted from server.rs
//! to improve code organization and testability.

pub(crate) mod common;
pub(crate) mod file_edit;
pub(crate) mod read_file;

// Re-export common items for convenience
pub(crate) use common::*;