cairnlang-mcp-server 0.5.0

Cairn MCP server: structural authoring surface for AI agents, a thin JSON-RPC transport over cairnlang-core.
Documentation
1
2
3
4
5
6
//! Cairn MCP server entry point: JSON-RPC over stdio. All logic is in the
//! library (and, beneath it, in `cairn-core`); this is only the transport.

fn main() {
    cairn_mcp_server::serve_stdio();
}