Expand description
Raymon is a stateful HTTP ingest + MCP server + terminal UI for Ray-style logs.
Most users interact with Raymon via the raymon binary. This crate also exposes a small API so
Raymon can be embedded and launched from Rust.
§Running
#[tokio::main]
async fn main() -> Result<(), raymon::DynError> {
raymon::run().await
}Modules§
- colors
- Canonical color names used throughout Raymon.
- raymon_
core - Core domain types and traits for Raymon.
- raymon_
ingest - HTTP ingest handlers for Raymon.
- raymon_
mcp - MCP handlers for Raymon using rmcp.
- raymon_
storage - Storage layer for Raymon.
- raymon_
tui - Ratatui interface for Raymon.
Functions§
- run
- Entry point for the
raymonCLI.