m1nd-mcp 0.4.0

MCP server for m1nd — 61 tools for code intelligence, zero LLM tokens
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// === 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 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::core::*;