pty-mcp 0.2.0

An MCP server for PTY management with SSH connections, remote sessions, file access, and mounts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod capability_probe;
pub mod guard;
pub mod model;
pub mod policy;
pub mod registry;
pub mod runtime;

pub use capability_probe::SshCapabilityProbe;
pub use guard::SshGuard;
pub use model::{
    MacFuseCapability, SshAuthKind, SshBinaryCapability, SshCapabilityView, SshConnectionId,
    SshConnectionStatus, SshConnectionSummary, SshMountBackend, SshMountId, SshMountStatus,
    SshMountSummary, SshTarget,
};
pub use policy::SshPolicy;
pub use registry::{SshConnectionRelations, SshConnectionResourceCounts, SshRegistry};
pub use runtime::SshRuntime;