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

15 lines (14 loc) 478 B
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; /** * Register Atlassian Search MCP Tools * * Registers the search-related tools with the MCP server. * Each tool is registered with its schema, description, and handler function. * * @param server - The MCP server instance to register tools with */ declare function registerTools(server: McpServer): void; declare const _default: { registerTools: typeof registerTools; }; export default _default;