@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) • 596 B
TypeScript
import { ControllerResponse } from '../types/common.types.js';
import { SearchOptions } from './atlassian.search.types.js';
/**
* Controller for searching Confluence content.
* Provides functionality for searching content using CQL.
*/
/**
* Search Confluence content using CQL
* @param options - Search options including CQL query, cursor, and limit
* @returns Promise with formatted search results and pagination information
*/
declare function search(options: SearchOptions): Promise<ControllerResponse>;
declare const _default: {
search: typeof search;
};
export default _default;