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 307 B
import type { AuthInfo } from "../lib/authTypes.js"; import type { AuthStrategy } from "./authStrategy.js"; export declare class JwtStrategy implements AuthStrategy { private readonly secretKey; constructor(); verify(token: string): Promise<AuthInfo>; } //# sourceMappingURL=jwtStrategy.d.ts.map