serdes-ai-mcp 0.1.5

Model Context Protocol (MCP) implementation for serdes-ai
docs.rs failed to build serdes-ai-mcp-0.1.5
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

serdes-ai-mcp

Crates.io Documentation License: MIT

Model Context Protocol (MCP) implementation for serdes-ai

This crate provides MCP (Model Context Protocol) support for SerdesAI:

  • MCP client implementation
  • Tool server integration
  • Resource and prompt management
  • Stdio and HTTP transports

Installation

[dependencies]
serdes-ai-mcp = "0.1"

Usage

use serdes_ai_mcp::{McpClient, McpToolset};

let client = McpClient::stdio("npx", &["-y", "@modelcontextprotocol/server-filesystem"])?;
let toolset = McpToolset::from_client(client).await?;

let agent = Agent::new(model)
    .toolset(toolset)
    .build();

Part of SerdesAI

This crate is part of the SerdesAI workspace.

For most use cases, you should use the main serdes-ai crate which re-exports these types.

License

MIT License - see LICENSE for details.