consciousness-mcp: full MCP server in Rust

Replaces the Python MCP bridge. Single binary speaks JSON-RPC
over stdio, exposes 14 tools:
- 10 memory tools (delegate to poc-memory CLI)
- channel_list, channel_recv, channel_send, channel_notifications

No external dependencies beyond serde_json. Channel tools use
capnp RPC to talk to daemon sockets directly.

Co-Developed-By: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
ProofOfConcept 2026-04-03 20:30:07 -04:00
parent 56fc3a20d8
commit e104a16f61
3 changed files with 518 additions and 0 deletions

View file

@ -108,3 +108,7 @@ path = "src/claude/memory-search.rs"
[[bin]]
name = "mcp-schema"
path = "src/claude/mcp-schema.rs"
[[bin]]
name = "consciousness-mcp"
path = "src/claude/mcp-server.rs"