UNPKG

@mseep/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

15 lines (14 loc) 803 B
import { WorkspaceDetailed, WorkspacePermissionsResponse, WorkspaceMembership } from '../services/vendor.atlassian.workspaces.types.js'; /** * Format a list of workspaces for display * @param workspacesData - Raw workspaces data from the API * @returns Formatted string with workspaces information in markdown format */ export declare function formatWorkspacesList(workspacesData: WorkspacePermissionsResponse): string; /** * Format detailed workspace information for display * @param workspace - Raw workspace data from the API * @param membership - Optional membership information for the workspace * @returns Formatted string with workspace details in markdown format */ export declare function formatWorkspaceDetails(workspace: WorkspaceDetailed, membership?: WorkspaceMembership): string;