UNPKG

@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

11 lines (10 loc) 379 B
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; /** * Register generic Confluence API tools with the MCP server. * Uses the modern registerTool API (SDK v1.22.0+) instead of deprecated tool() method. */ declare function registerTools(server: McpServer): void; declare const _default: { registerTools: typeof registerTools; }; export default _default;