UNPKG

@cyanheads/git-mcp-server

Version:

An MCP (Model Context Protocol) server enabling LLMs and AI agents to interact with Git repositories. Provides tools for comprehensive Git operations including clone, commit, branch, diff, log, status, push, pull, merge, rebase, worktree, tag management,

8 lines (7 loc) 386 B
/** * @fileoverview Barrel file for the git_set_working_dir tool. * Exports the registration function and potentially other related components. */ export { registerGitSetWorkingDirTool, initializeGitSetWorkingDirStateAccessors, } from "./registration.js"; // Export types if needed elsewhere, e.g.: // export type { GitSetWorkingDirInput, GitSetWorkingDirResult } from './logic.js';