jarvy 0.0.5

Jarvy is a fast, cross-platform CLI that installs and manages developer tools across macOS and Linux.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! MCP command handler - start the Model Context Protocol server

use std::path::PathBuf;

use crate::mcp;

/// Run the MCP server
pub fn run_mcp(config: Option<PathBuf>) -> i32 {
    if let Err(e) = mcp::run(config) {
        eprintln!("MCP server error: {}", e);
        return 1;
    }

    0
}