UNPKG

@mseep/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) 341 B
/** * @fileoverview Barrel file for the git_show tool. * Exports the registration function and state accessor initialization function. */ export { registerGitShowTool, initializeGitShowStateAccessors, } from "./registration.js"; // Export types if needed elsewhere, e.g.: // export type { GitShowInput, GitShowResult } from './logic.js';