Atlassian Confluence MCP Server

by aashari
Verified

get-space

Get detailed information about a specific Confluence space by ID or key.

PURPOSE: Retrieves comprehensive space metadata including description, homepage, permissions, and more.

WHEN TO USE:

  • When you need detailed information about a specific space
  • When you need to find the homepage or key pages within a space
  • When you need to verify space permissions or settings
  • After using list-spaces to identify the relevant space

WHEN NOT TO USE:

  • When you don't know which space to look for (use list-spaces first)
  • When you need to browse multiple spaces (use list-spaces instead)
  • When you need to find specific content (use search or list-pages instead)

RETURNS: Detailed space information including key, name, description, type, homepage, and metadata.

EXAMPLES:

  • By key: {idOrKey: "DEV"}
  • By ID: {idOrKey: "123456"}

ERRORS:

  • Space not found: Verify the space key or ID is correct
  • Permission errors: Ensure you have access to the requested space
  • Rate limiting: Cache space information when possible

Input Schema

NameRequiredDescriptionDefault
idYesThe numeric ID of the Confluence space to retrieve (e.g., "123456"). This is required and must be a valid space ID from your Confluence instance.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "id": { "description": "The numeric ID of the Confluence space to retrieve (e.g., \"123456\"). This is required and must be a valid space ID from your Confluence instance.", "type": "string" } }, "required": [ "id" ], "type": "object" }

You must be authenticated.

Other Tools