1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//! MCP (Model Context Protocol) server for Redis Cloud and Enterprise
//!
//! This crate provides an MCP server that exposes Redis Cloud and Enterprise
//! management operations as tools for AI systems.
//!
//! # Example
//!
//! ```no_run
//! use redisctl_mcp::RedisCtlMcp;
//! use rmcp::{ServiceExt, transport::stdio};
//!
//! #[tokio::main]
//! async fn main() -> anyhow::Result<()> {
//! let server = RedisCtlMcp::new(None, true)?; // profile=None, read_only=true
//! let service = server.serve(stdio()).await?;
//! service.waiting().await?;
//! Ok(())
//! }
//! ```
pub use McpError;
pub use RedisCtlMcp;
/// Start the MCP server with stdio transport
pub async