contextvm-sdk 0.1.1

Rust SDK for the ContextVM protocol — MCP over Nostr
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Transport layer for ContextVM — MCP over Nostr.
//!
//! Provides client and server transports that implement the MCP Transport pattern
//! using Nostr events for communication.

pub mod base;
pub mod client;
pub mod discovery_tags;
pub mod server;

pub use client::{ClientCorrelationStore, NostrClientTransport, NostrClientTransportConfig};
pub use discovery_tags::*;
pub use server::{NostrServerTransport, NostrServerTransportConfig, ServerEventRouteStore};