@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
16 lines (15 loc) • 531 B
TypeScript
/**
* Service for interacting with Confluence comments API
*/
import { ListPageCommentsParams, ListCommentsResponse } from './vendor.atlassian.comments.types.js';
/**
* List comments for a specific Confluence page
*
* @param params - Parameters for the request
* @returns Response containing the list of comments
*/
declare function listPageComments(params: ListPageCommentsParams): Promise<ListCommentsResponse>;
export declare const atlassianCommentsService: {
listPageComments: typeof listPageComments;
};
export {};