@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) • 333 B
JavaScript
/**
* @fileoverview Barrel file for the git_init tool.
* Exports the registration function and the state accessor initializer.
*/
export { registerGitInitTool, initializeGitInitStateAccessors, } from "./registration.js";
// Export types if needed elsewhere, e.g.:
// export type { GitInitInput, GitInitResult } from './logic.js';