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
14
15
16
17
//! rmcp integration for ContextVM Nostr transports.
//!
//! This module contains the conversion helpers and worker bridge that let raw
//! ContextVM transports plug directly into rmcp service APIs.

pub mod convert;
pub mod transport;
pub mod worker;

#[cfg(test)]
mod pipeline_tests;

pub use convert::{
    internal_to_rmcp_client_rx, internal_to_rmcp_server_rx, rmcp_client_tx_to_internal,
    rmcp_server_tx_to_internal,
};
pub use worker::{NostrClientWorker, NostrServerWorker};