m1nd-mcp 0.2.1

MCP server for m1nd — 43 tools for AI agents to understand code structure
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// === m1nd-mcp/src/perspective/mod.rs ===
// Perspective subsystem: stateful navigation, locking, and route management.
// From 12-PERSPECTIVE-SYNTHESIS prerequisite chain.
//
// Submodules:
// - state:         Core types (PerspectiveState, LockState, enums, limits)
// - keys:          Content-addressable edge keys and route IDs (Theme 4)
// - validation:    Input validation and parameter bounds (Theme 9)
// - confidence:    Confidence calibration and epistemic safety (Theme 13)
// - peek_security: Peek file security pipeline (Theme 6)

pub mod confidence;
pub mod keys;
pub mod peek_security;
pub mod state;
pub mod validation;