paygress-cli 0.1.9

Pay-per-use compute marketplace using Cashu ecash and Nostr — no accounts, no signups
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// MCP (Model Context Protocol) Server for Paygress
//
// This module provides a simple, manual implementation of the MCP server
// that bypasses the complex RMCP library issues and provides reliable
// communication with MCP clients like gateway-cli.
//
// This version supports L402 paywalled HTTP endpoints.

pub mod http_client;
pub mod protocol;
pub mod server;

pub use server::MCPServer;