conf_get_space
Retrieve detailed metadata for a specific Confluence space, including description, homepage ID, type, status, and permissions, by providing its unique space key. Use this tool to gain full context after identifying a space with conf_ls_spaces
.
Instructions
Retrieves comprehensive details for a specific Confluence space identified by spaceKey
. Returns the space's description, homepage ID, type, status, theme, permissions, and other metadata as formatted Markdown. Use this after finding a space key via conf_ls_spaces
to get the full space context.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
spaceKey | Yes | The key of the Confluence space to retrieve (e.g., "DEV" or "MARKETING"). The space key is a unique identifier for a space, typically a short uppercase code. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"spaceKey": {
"description": "The key of the Confluence space to retrieve (e.g., \"DEV\" or \"MARKETING\"). The space key is a unique identifier for a space, typically a short uppercase code.",
"type": "string"
}
},
"required": [
"spaceKey"
],
"type": "object"
}