aonyx-mcp 0.10.0

Aonyx Agent — MCP client (consume servers) and server (expose self)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # aonyx-mcp
//!
//! Model Context Protocol — both directions.
//!
//! - [`client`] — connect to external MCP servers (stdio / HTTP / SSE), discover
//!   their tools, and register them into the Aonyx [`ToolRegistry`](aonyx_tools::ToolRegistry).
//! - [`server`] — expose Aonyx's own tool catalogue + memory tools to other
//!   agents (Claude Code, Cursor, Cline, …).
//!
//! Auth: Bearer token from `~/.aonyx/mcp_tokens.toml`.

#![forbid(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms)]

pub mod client;
pub mod server;