@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
30 lines (29 loc) • 822 B
TypeScript
import { z } from 'zod';
/**
* Schema for list-workspaces tool arguments
*/
export declare const ListWorkspacesToolArgs: z.ZodObject<{
limit: z.ZodOptional<z.ZodNumber>;
cursor: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
cursor?: string | undefined;
limit?: number | undefined;
}, {
cursor?: string | undefined;
limit?: number | undefined;
}>;
export type ListWorkspacesToolArgsType = z.infer<typeof ListWorkspacesToolArgs>;
/**
* Schema for get-workspace tool arguments
*/
export declare const GetWorkspaceToolArgs: z.ZodObject<{
/**
* Workspace slug to retrieve
*/
workspaceSlug: z.ZodString;
}, "strip", z.ZodTypeAny, {
workspaceSlug: string;
}, {
workspaceSlug: string;
}>;
export type GetWorkspaceToolArgsType = z.infer<typeof GetWorkspaceToolArgs>;