rust-mcp-server-syncable-cli 0.1.13

High-performance Model Context Protocol (MCP) server for code analysis, security scanning, and project insights.
Documentation
1
2
3
4
5
6
7
8
// src/main_sse.rs
use rust_mcp_server_syncable_cli::start_sse;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    start_sse().await?;
    Ok(())
}