fallow-mcp 2.57.0

MCP server for fallow codebase intelligence (exposes fallow as typed tools to AI agents)
1
2
3
4
5
6
7
8
9
10
11
12
use crate::params::ExplainParams;

/// Build CLI arguments for the `fallow_explain` tool.
pub fn build_explain_args(params: &ExplainParams) -> Vec<String> {
    vec![
        "explain".to_string(),
        params.issue_type.clone(),
        "--format".to_string(),
        "json".to_string(),
        "--quiet".to_string(),
    ]
}