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
//! Prompt template registration and execution.
//!
//! Prompts are reusable, parameterised message templates that MCP clients can
//! retrieve and fill in. They support typed arguments and produce a list of
//! messages suitable for passing to an LLM.
//!
//! - [`prompt`] — `Prompt` component type and argument definitions.
//! - [`manager`] — `PromptManager` for registration, lookup, and execution.
//! - [`types`] — Supporting types.

pub mod manager;
pub mod prompt;
pub mod types;