@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
11 lines (10 loc) • 345 B
TypeScript
import { z } from 'zod';
/**
* Schema for clone-repository tool arguments.
*/
export declare const CloneRepositoryToolArgs: z.ZodObject<{
workspaceSlug: z.ZodOptional<z.ZodString>;
repoSlug: z.ZodString;
targetPath: z.ZodString;
}, z.core.$strip>;
export type CloneRepositoryToolArgsType = z.infer<typeof CloneRepositoryToolArgs>;