confluence_list_spaces
Pack: confluence · Endpoint: https://gateway.pipeworx.io/confluence/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/confluence_list_spaces for the schema, then POST the same URL with its arguments for the data.
List all Confluence spaces in your instance. Returns space ID, key, name, type, and status. Use to discover documentation areas.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no | Number of spaces to return (default 25, max 100) |
type | string | no | Filter 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
| Field | Type | Description |
|---|---|---|
spaces | array | List 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.