@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
13 lines (12 loc) • 549 B
TypeScript
import { ControllerResponse } from '../types/common.types.js';
import { RejectPullRequestToolArgsType } from '../tools/atlassian.pullrequests.types.js';
/**
* Request changes on a pull request in Bitbucket
* @param options - Options including workspace slug, repo slug, and pull request ID
* @returns Promise with formatted rejection confirmation as Markdown content
*/
declare function reject(options: RejectPullRequestToolArgsType): Promise<ControllerResponse>;
declare const _default: {
reject: typeof reject;
};
export default _default;