runtimescope 0.11.4

RuntimeScope — runtime monitoring for AI coding agents over MCP. Installs the runtimescope CLI plus the collector-server and mcp-server binaries.
1
2
3
4
5
6
7
8
9
//! `mcp-server` binary — a thin wrapper that provides the tokio runtime and
//! drives `runtimescope_mcp::run()` (the embedded-collector MCP server, ADR-0008).
//! The implementation lives in the `runtimescope-mcp` library crate so it is also
//! reusable on crates.io; this binary is what `cargo install runtimescope` ships.

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    runtimescope_mcp::run().await
}