@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) • 443 B
TypeScript
import { ControllerResponse } from '../types/common.types.js';
import { GetRepositoryToolArgsType } from '../tools/atlassian.repositories.types.js';
/**
* Get details of a specific repository
*
* @param params - Parameters containing workspaceSlug and repoSlug
* @returns Promise with formatted repository details content
*/
export declare function handleRepositoryDetails(params: GetRepositoryToolArgsType): Promise<ControllerResponse>;