use pmat::mcp_pmcp::PmcpServer;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
tracing_subscriber::fmt()
.with_max_level(tracing::Level::INFO)
.init();
println!("Creating pmcp-based MCP server...");
let _server = PmcpServer::new();
println!("pmcp server created successfully!");
println!("To run the server, use: PMAT_PMCP_MCP=1 cargo run --bin pmat");
println!("The server will handle MCP requests over stdio");
println!("✅ pmcp server implementation is ready!");
Ok(())
}