@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
24 lines (23 loc) • 837 B
TypeScript
import { ContentType } from '../utils/atlassian.util.js';
import { CodeSearchResult } 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(searchResponse: {
values?: CodeSearchResult[];
size: number;
}): string;
/**
* Format content search results into markdown
*
* @param response The content search response from the API
* @param contentType Optional content type filter that was applied
* @returns Markdown formatted string of content search results
*/
export declare function formatContentSearchResults(response: {
values?: unknown[];
size: number;
}, contentType?: ContentType): string;