UNPKG

@aashari/mcp-server-atlassian-confluence

Version:

Node.js/TypeScript MCP server for Atlassian Confluence. Provides tools enabling AI systems (LLMs) to list/get spaces & pages (content formatted as Markdown) and search via CQL. Connects AI seamlessly to Confluence knowledge bases using the standard MCP in

17 lines (16 loc) 548 B
import { Command } from 'commander'; /** * CLI module for managing Confluence pages. * Provides commands for listing pages and retrieving page details. * All commands require valid Atlassian credentials. */ /** * Register Confluence Pages CLI commands with the Commander program * @param program - The Commander program instance to register commands with * @throws Error if command registration fails */ declare function register(program: Command): void; declare const _default: { register: typeof register; }; export default _default;