Confluence
live ProductivityDataConfluence MCP — wraps the Confluence Cloud REST API v2 (OAuth)
Tools
confluence_list_pages List pages in a Confluence space. Returns page ID, title, status, and version.
No parameters required.
Try it
confluence_get_page Get a single Confluence page by ID. Returns page title, body content, status, version, and space info.
No parameters required.
Try it
confluence_search Search Confluence content using CQL (Confluence Query Language). Returns matching pages with ID, title, space, and excerpt.
No parameters required.
Try it
confluence_create_page Create a new Confluence page. Returns the created page ID, title, and URL.
No parameters required.
Try it
confluence_list_spaces List all Confluence spaces. Returns space ID, key, name, type, and status.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/confluence/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/confluence/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"confluence_list_pages","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("confluence_list_pages", {}); // Or ask in plain English:
const answer = await px.ask("confluence mcp — wraps the confluence cloud rest api v2 (oauth)"); Related packs
Other Pipeworx packs in the same categories (Productivity, Data):