pointbreak 0.0.0

A high-performance Model Context Protocol (MCP) proxy written in Rust, providing transparent inspection, recording, and modification of MCP traffic.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Returns a short message about Shadowcat.
pub fn about() -> &'static str {
    "pointbreak: coming soon; see https://github.com/withpointbreak/pointbreak"
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn about_mentions_coming_soon() {
        let msg = about();
        assert!(msg.contains("coming soon"));
    }
}