ares-server 0.7.3

A.R.E.S - Agentic Retrieval Enhanced Server: A production-grade agentic chatbot server with multi-provider LLM support, tool calling, RAG, and MCP integration
Documentation
// ares/src/mcp/mod.rs
// MCP module — exposes ARES as an MCP tool provider.

#[cfg(feature = "mcp")]
pub mod extension;

#[cfg(feature = "mcp")]
pub mod server;

#[cfg(feature = "mcp")]
pub mod tools;

#[cfg(feature = "mcp")]
pub mod auth;

#[cfg(feature = "mcp")]
pub mod usage;

#[cfg(feature = "mcp")]

#[cfg(feature = "mcp")]
pub mod client;

#[cfg(feature = "mcp")]
pub mod registry;

#[cfg(feature = "mcp")]
pub use server::start_mcp_server;

#[cfg(feature = "mcp")]
pub use extension::{McpToolExtension, NoOpMcpExtension};

#[cfg(feature = "mcp")]
pub use registry::McpRegistry;