confluence_list_spaces

Pack: confluence · Endpoint: https://gateway.pipeworx.io/confluence/mcp

List all Confluence spaces in your instance. Returns space ID, key, name, type, and status. Use to discover documentation areas.

Parameters

NameTypeRequiredDescription
limitnumbernoNumber of spaces to return (default 25, max 100)
typestringnoFilter by space type: “global” or “personal”

Example call

Arguments

{
  "limit": 25
}

curl

curl -X POST https://gateway.pipeworx.io/confluence/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"confluence_list_spaces","arguments":{"limit":25}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('confluence_list_spaces', {
  "limit": 25
});

More examples

{
  "type": "global",
  "limit": 50
}

Response shape

Always returns: spaces

FieldTypeDescription
spacesarrayList of spaces in the instance
Full JSON Schema
{
  "type": "object",
  "properties": {
    "spaces": {
      "type": "array",
      "description": "List of spaces in the instance",
      "items": {
        "type": "object"
      }
    }
  },
  "required": [
    "spaces"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "confluence": {
      "url": "https://gateway.pipeworx.io/confluence/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026