pmat 3.22.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
1
2
3
4
5
6
7
8
9
10
11
12
use clap::Subcommand;

/// Commands for MCP manifest management
#[derive(Debug, Clone, Subcommand, PartialEq)]
pub enum McpCommands {
    /// Manage the MCP manifest file
    Manifest {
        /// Write the manifest to mcp.json
        #[arg(long)]
        write: bool,
    },
}