bevy_brp_mcp 0.22.2

MCP server for Bevy Remote Protocol (BRP) integration
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod client;
mod constants;
mod http_client;
mod json_rpc_builder;
mod operation;
mod response_handling;

// Re-export public items
pub use client::BrpClient;
pub(crate) use client::method_not_found_message;
// Re-export error constant needed by external modules
pub use constants::JSON_RPC_ERROR_METHOD_NOT_FOUND;
// Re-export types needed by result_struct macro and client operations
pub use response_handling::BrpToolConfig;
pub use response_handling::FormatCorrectionStatus;
pub use response_handling::ResponseStatus;
pub use response_handling::ResultStructBrpExt;