mcp_protocol/types/
client.rs

1// mcp-protocol/src/types/client.rs
2use serde::{Deserialize, Serialize};
3
4/// Information about the client
5#[derive(Debug, Clone, Serialize, Deserialize)]
6pub struct ClientInfo {
7    pub name: String,
8    pub version: String,
9}