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,

12 lines 557 B
/** * @fileoverview Barrel file for the auth module. * Exports core utilities and middleware strategies for easier imports. * @module src/mcp-server/transports/auth/index */ export { authContext } from "./lib/authContext.js"; export { withRequiredScopes } from "./lib/authUtils.js"; export { createAuthStrategy } from "./authFactory.js"; export { createAuthMiddleware } from "./authMiddleware.js"; export { JwtStrategy } from "./strategies/jwtStrategy.js"; export { OauthStrategy } from "./strategies/oauthStrategy.js"; //# sourceMappingURL=index.js.map