rs-fast-mcp 0.2.0

High-performance, async-first Rust implementation of the Model Context Protocol (MCP)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Model Context Protocol (MCP) type definitions and wire-format utilities.
//!
//! This module contains the core protocol building blocks:
//!
//! - [`types`] — Serde-compatible structs for every MCP message, capability, and
//!   content type (text, image, audio, embedded resources).
//! - [`protocol`] — Constructor helpers for JSON-RPC requests, responses,
//!   notifications, and errors.
//! - [`config`] — Deserialization of `mcpServers` configuration files and
//!   transport-type inference.

pub mod config;
pub mod protocol;
pub mod types;