bevy_debugger_mcp 0.1.8

AI-assisted debugging for Bevy games through Claude Code using Model Context Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Mock clients and services for integration testing
/// 
/// This module provides mock implementations of external services
/// to enable comprehensive testing without external dependencies.

pub mod mcp_client;

pub use mcp_client::{
    MockMcpClient,
    DebugSessionReport,
    SessionStats,
    ProtocolCompliance,
    ToolDefinition,
};