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,

14 lines 677 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 type { AuthInfo } from "./lib/authTypes.js"; export { createAuthStrategy } from "./authFactory.js"; export { createAuthMiddleware } from "./authMiddleware.js"; export type { AuthStrategy } from "./strategies/authStrategy.js"; export { JwtStrategy } from "./strategies/jwtStrategy.js"; export { OauthStrategy } from "./strategies/oauthStrategy.js"; //# sourceMappingURL=index.d.ts.map