Welcome to MCP Agent’s documentation!#

Overview#

MCP-Agent is a Rust implementation of the Model Context Protocol (MCP), which is a framework for building AI-powered agents and workflows. It provides a unified interface for integrating various AI models, human input, and external tools.

The MCP protocol defines how agents interact with each other and with the world, establishing a clear context management system to maintain state across interactions.

Key Features#

  • Agent Management: Create, connect, and manage MCP agents

  • Workflow Orchestration: Define and execute complex workflows with dependencies

  • LLM Integration: Connect to various LLM providers through a unified interface

  • Human Input: Integrate human feedback and decisions into agent workflows

  • Terminal Interfaces: Both console and web-based terminal interfaces

  • Visualization Tools: Graph-based visualization of workflows and agent systems

Getting Started#

Installation#

To install MCP-Agent:

cargo add mcp-agent

Basic Usage#

use mcp_agent::prelude::*;

#[tokio::main]
async fn main() -> Result<()> {
    // Create a simple agent
    let mut agent = Agent::new();

    // Connect to a provider
    agent.connect("provider_url").await?;

    // Send a message
    let response = agent.send("Hello, world!").await?;

    println!("Response: {}", response);

    Ok(())
}

Indices and tables#