drio
Open app

Confluence Communication Server MCP Server

Source

A test of confluence mcp server

Catalog onlyCatalog onlySTDIO

Overview

Confluence Communication Server MCP Server is a TypeScript-based server that provides tools to interact with Confluence, allowing users to execute CQL queries and retrieve content from Confluence pages.

To use the server, install the dependencies, build the server, and configure it with Claude Desktop by adding the server configuration to the appropriate config file based on your operating system.

  • Execute CQL queries to search for Confluence pages. - Retrieve the content of Confluence pages. - Debugging tools available through MCP Inspector.
  1. Searching for specific pages in Confluence using CQL queries.
  2. Fetching and displaying content from Confluence pages for integration with other applications.
  3. Debugging MCP server interactions using the MCP Inspector.

Add to your AI client

Use these steps to connect Confluence Communication Server MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "confluence-mcp-server-ks-gen-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-confluence-mcp-server-ks-gen-ai"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "confluence-mcp-server-ks-gen-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-confluence-mcp-server-ks-gen-ai"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "confluence-mcp-server-ks-gen-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-confluence-mcp-server-ks-gen-ai"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "confluence-mcp-server-ks-gen-ai": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-confluence-mcp-server-ks-gen-ai"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "confluence-mcp-server-ks-gen-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-confluence-mcp-server-ks-gen-ai"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "confluence-mcp-server-ks-gen-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-confluence-mcp-server-ks-gen-ai"
      ]
    }
  }
}

FAQ

What is CQL?

CQL stands for Confluence Query Language, which is used to query Confluence content.

How do I install the server?

You can install the server by running `npm install` in the project directory.

Can I use this server on Windows?

Yes! The server can be configured to run on both MacOS and Windows.