wtp-mcp-rs 0.1.0

MCP server for WTP - Git Worktree Plus
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Tool implementations and shared input/output types.

/// Utility tool helpers (config and shell integration).
pub mod utility;
/// Worktree lifecycle tool helpers.
pub mod worktree;

pub use utility::{
    GetWorktreePathInput, InitConfigInput, InitConfigOutput, ShellHookInput, ShellInitInput,
    ShellScriptOutput, WorktreePathOutput,
};
pub use utility::{get_worktree_path, init_config, shell_hook, shell_init};

pub use worktree::{
    AddWorktreeInput, AddWorktreeOutput, ListWorktreesInput, ListWorktreesOutput,
    MergeWorktreeInput, MergeWorktreeOutput, RemoveWorktreeInput, RemoveWorktreeOutput,
};
pub use worktree::{add_worktree, list_worktrees, merge_worktree, remove_worktree};