agentic-reality-mcp 0.1.0

MCP server for AgenticReality — universal LLM access to existential grounding
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Transport layer for MCP communication.

/// Stdio transport for MCP.
pub struct StdioTransport;

impl StdioTransport {
    pub fn new() -> Self {
        Self
    }
}

impl Default for StdioTransport {
    fn default() -> Self {
        Self::new()
    }
}