cordance-cli 0.1.2

Cordance CLI — installs the `cordance` binary. The umbrella package `cordance` re-exports this entry; either install command works.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Cordance MCP server (`cordance serve`).
//!
//! This module wraps the `rmcp` 1.7 SDK with Cordance's specific tool
//! surface, authority tiering, and safety guardrails. The public entry
//! points are [`server::CordanceServer`] (the rmcp `ServerHandler`) and
//! [`server::serve_stdio`] (the loop driver for stdio transport).
//!
//! All other types in this module are public to allow integration tests in
//! `crates/cordance-cli/tests/mcp.rs` to call validation, envelope, and
//! error helpers directly without spawning a subprocess.

pub mod envelope;
pub mod error;
pub mod server;
pub mod tools;
pub mod validation;