@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
23 lines (22 loc) • 911 B
TypeScript
import { CodeSearchResponse, CommitsResponse } from '../services/vendor.atlassian.search.service.js';
/**
* Format code search results into markdown
*
* @param response The code search response from the API
* @returns Markdown formatted string of code search results
*/
export declare function formatCodeSearchResults(response: CodeSearchResponse): string;
/**
* Format commits search results into markdown
*
* @param response The commits response from the API
* @param repoSlug The repository slug
* @param workspaceSlug The workspace slug
* @returns Markdown formatted string of commits search results
*/
export declare function formatCommitsResults(response: CommitsResponse, repoSlug: string, workspaceSlug: string): string;
declare const _default: {
formatCodeSearchResults: typeof formatCodeSearchResults;
formatCommitsResults: typeof formatCommitsResults;
};
export default _default;