autoagents-toolkit 0.3.7

Agent Framework for Building Autonomous Agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! MCP (Model Context Protocol) support for AutoAgents
//!
//! This module provides integration with MCP servers, allowing AutoAgents
//! to use tools from external MCP-compatible servers.

pub mod adapter;
pub mod client;
pub mod config;
pub mod tools;

pub use adapter::{McpToolAdapter, McpToolWrapper};
pub use client::{McpError, McpServerConnection, McpToolsManager};
pub use config::{Config, McpConfig, McpServerConfig};
pub use tools::McpTools;