@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
13 lines (12 loc) • 585 B
TypeScript
import { type GetDiffstatParams, type DiffstatResponse, type GetRawDiffParams } from './vendor.atlassian.repositories.diff.types.js';
/**
* Retrieve diffstat (per–file summary) between two refs (branches, tags or commits).
* Follows Bitbucket Cloud endpoint:
* GET /2.0/repositories/{workspace}/{repo_slug}/diffstat/{spec}
*/
export declare function getDiffstat(params: GetDiffstatParams): Promise<DiffstatResponse>;
/**
* Retrieve raw unified diff between two refs.
* Endpoint: /diff/{spec}
*/
export declare function getRawDiff(params: GetRawDiffParams): Promise<string>;