Confluence

live ProductivityData

Confluence MCP — wraps the Confluence Cloud REST API v2 (OAuth)

5 tools
0ms auth
free tier 50 calls/day

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_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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/confluence/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("confluence_list_pages", {});
ask_pipeworx
// 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):