@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) • 517 B
TypeScript
import { SearchParams, SearchResponseType } from './vendor.atlassian.search.types.js';
/**
* Search Confluence content using CQL
*
* @param {SearchParams} params - Parameters for the search query
* @returns {Promise<SearchResponseType>} Promise containing the search results
* @throws {Error} If Atlassian credentials are missing or API request fails
*/
declare function search(params: SearchParams): Promise<SearchResponseType>;
declare const _default: {
search: typeof search;
};
export default _default;