@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
14 lines (13 loc) • 531 B
TypeScript
import { ControllerResponse } from '../types/common.types.js';
import { SearchToolArgsType } from '../tools/atlassian.search.types.js';
/**
* Search Confluence content using CQL
* @param options - Search options including CQL query and pagination
* @returns Promise with formatted search results and pagination info
* @throws Error if search operation fails
*/
declare function search(options?: SearchToolArgsType): Promise<ControllerResponse>;
declare const _default: {
search: typeof search;
};
export default _default;