Interact with Confluence This is a TypeScript-based MCP server that provides tools to interact with Confluence. It demonstrates core MCP concepts by providing: - Tools for executing CQL queries to search pages - Tools for retrieving the content of Confluence pages - Tools for updating content on Confluence pages - Purpose: Run a CQL query to search for Confluence pages. - Parameters: cql, limit (d
Add this skill
npx mdskills install KS-GEN-AI/confluence-mcp-serverProvides three well-documented Confluence tools for search, retrieval, and updates with clear setup
1# Confluence Communication Server MCP Server23[](https://smithery.ai/server/@KS-GEN-AI/confluence-mcp-server)45Interact with Confluence67This is a TypeScript-based MCP server that provides tools to interact with Confluence. It demonstrates core MCP concepts by providing:89- Tools for executing CQL queries to search pages10- Tools for retrieving the content of Confluence pages11- Tools for updating content on Confluence pages1213<a href="https://glama.ai/mcp/servers/850t5hxya0">14 <img width="380" height="200" src="https://glama.ai/mcp/servers/850t5hxya0/badge" alt="Confluence Communication Server MCP server" />15</a>1617## Features1819## Confluence Tools2021### `execute_cql_search`2223- **Purpose**: Run a CQL query to search for Confluence pages.24- **Parameters**: `cql`, `limit` (default: 10).2526### `get_page_content`2728- **Purpose**: Fetch the content of a Confluence page.29- **Parameters**: `pageId`.3031### `update_page_content`3233- **Purpose**: Update the content of a Confluence page.34- **Parameters**: `pageId`, `content`, `title` (optional, if you want to change it).3536## Development3738Install dependencies:3940```bash41npm install42```4344Build the server:4546```bash47npm run build48```4950For development with auto-rebuild:5152```bash53npm run watch54```5556## Installation5758### Installing via Smithery5960To install Confluence Communication Server MCP Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@KS-GEN-AI/confluence-mcp-server):6162```bash63npx -y @smithery/cli install @KS-GEN-AI/confluence-mcp-server --client claude64```6566To use with Claude Desktop, add the server config:6768On MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`69On Windows: `%APPDATA%/Claude/claude_desktop_config.json`7071```json72{73 "mcpServers": {74 "Confluence communication server": {75 "command": "node",76 "args": ["/PATH_TO_THE_PROJECT/build/index.js"],77 "env": {78 "CONFLUENCE_URL": "https://XXXXXXXX.atlassian.net/wiki",79 "CONFLUENCE_API_MAIL": "Your email",80 "CONFLUENCE_API_KEY": "KEY_FROM: https://id.atlassian.com/manage-profile/security/api-tokens"81 }82 }83 }84}85```8687### Debugging8889Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector), which is available as a package script:9091```bash92npm run inspector93```9495The Inspector will provide a URL to access debugging tools in your browser.
Full transparency — inspect the skill content before installing.