techne-mcp 0.1.0

Messages and data structures of the Model Context Protocol
Documentation
1
2
3
4
5
6
7
8
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "method")]
pub enum Notification {
    #[serde(rename = "initialized")]
    Initialized,
}