@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
21 lines (20 loc) • 631 B
TypeScript
import { z } from 'zod';
/**
* Arguments for searching Confluence content
* Matches the controller's search function parameters
*/
declare const SearchToolArgs: z.ZodObject<{
limit: z.ZodOptional<z.ZodNumber>;
cursor: z.ZodOptional<z.ZodString>;
cql: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
cursor?: string | undefined;
limit?: number | undefined;
cql?: string | undefined;
}, {
cursor?: string | undefined;
limit?: number | undefined;
cql?: string | undefined;
}>;
type SearchToolArgsType = z.infer<typeof SearchToolArgs>;
export { SearchToolArgs, type SearchToolArgsType };