mcp-protocol 0.2.7

Protocol definitions for the Model Context Protocol (MCP)
Documentation
1
2
3
4
5
6
7
8
9
// mcp-protocol/src/types/client.rs
use serde::{Deserialize, Serialize};

/// Information about the client
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ClientInfo {
    pub name: String,
    pub version: String,
}