UNPKG

@aashari/mcp-server-atlassian-bitbucket

Version:

Node.js/TypeScript MCP server for Atlassian Bitbucket. Enables AI systems (LLMs) to interact with workspaces, repositories, and pull requests via tools (list, get, comment, search). Connects AI directly to version control workflows through the standard MC

10 lines (9 loc) 467 B
import { ControllerResponse } from '../types/common.types.js'; import { GetCommitHistoryToolArgsType } from '../tools/atlassian.repositories.types.js'; /** * Get commit history for a repository * * @param options - Options containing repository identifiers and filters * @returns Promise with formatted commit history content and pagination info */ export declare function handleCommitHistory(options: GetCommitHistoryToolArgsType): Promise<ControllerResponse>;