@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
16 lines (15 loc) • 358 B
TypeScript
/**
* Types of content that can be searched in Bitbucket
*/
export declare enum ContentType {
WIKI = "wiki",
ISSUE = "issue",
PULLREQUEST = "pullrequest",
COMMIT = "commit",
BRANCH = "branch",
TAG = "tag"
}
/**
* Get the display name for a content type
*/
export declare function getContentTypeDisplay(type: ContentType): string;