@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
12 lines (11 loc) • 336 B
TypeScript
import { Command } from 'commander';
/**
* Register generic Confluence API CLI commands with the Commander program
*
* @param program - The Commander program instance to register commands with
*/
declare function register(program: Command): void;
declare const _default: {
register: typeof register;
};
export default _default;