UNPKG

@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) 435 B
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; /** * Register all Bitbucket repository tools with the MCP server. * Uses the modern registerTool API (SDK v1.22.0+) instead of deprecated tool() method. * * Branch creation is now handled by bb_post tool. */ declare function registerTools(server: McpServer): void; declare const _default: { registerTools: typeof registerTools; }; export default _default;