rust-mcp-extra 0.3.3

A companion crate to rust-mcp-sdk offering extra implementations of core traits like SessionStore and EventStore, enabling integration with various database backends and third-party platforms such as AWS Lambda for serverless and cloud-native MCP applications.
Documentation
1
2
3
4
5
6
7
mod sqlite_event_store;
mod sqlite_session_store;

#[allow(unused)]
pub use sqlite_event_store::*;
#[allow(unused)]
pub use sqlite_session_store::*;