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

15 lines (14 loc) 364 B
/** * CLI commands for interacting with Confluence comments */ import { Command } from 'commander'; /** * Register comments-related commands with the CLI * * @param program - Commander program to register commands with */ declare function register(program: Command): void; declare const _default: { register: typeof register; }; export default _default;