m1nd-mcp 0.8.0

MCP Server for m1nd. Stop letting AI grep your codebase. Neuro-symbolic connectome for AI agents.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// === m1nd-mcp/src/protocol/mod.rs ===
//
// Split protocol type system (Theme 8: Dispatch Architecture).
// - core:        Existing 13 tool input/output types
// - perspective:  11 perspective tool + 2 management tool types
// - lock:         5 lock tool types

pub mod auto_ingest;
pub mod core;
pub mod layers;
pub mod lock;
pub mod perspective;
pub mod surgical;

// Re-export core types so existing `use crate::protocol::*` continues to work.
pub use self::auto_ingest::*;
pub use self::core::*;