@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
15 lines (14 loc) • 616 B
TypeScript
import { SearchResult } from '../services/vendor.atlassian.search.types.js';
/**
* Format search results for display
* @param searchData - Raw search results from the API
* @returns Formatted string with search results in markdown format
*/
export declare function formatSearchResults(searchData: SearchResult[]): string;
/**
* Process and prepare a CQL query for sending to the API.
* Handles escaping special characters and proper formatting.
* @param cql - Raw CQL query string
* @returns Processed CQL query ready for the API
*/
export declare function processCqlQuery(cql: string | undefined): string;