{
  "info": {
    "name": "Confluence — mcp.ai",
    "description": "REST API for the Confluence MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/confluence",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "confluence_add_content_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/content/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "content",
            "label"
          ]
        },
        "description": "Tool to add labels to a piece of content. Use after obtaining the content ID to tag pages or blog posts with metadata labels.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"labels\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_create_blogpost",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/blogpost",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "blogpost"
          ]
        },
        "description": "Tool to create a new Confluence blog post. Use when you need to publish content in a specific space. Response includes `data.id` for the post ID and `data._links.base` + `data._links.webui` for the UR",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": {},\n  \"title\": \"\",\n  \"status\": \"\",\n  \"spaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_create_blogpost_property",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/blogpost/property",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "blogpost",
            "property"
          ]
        },
        "description": "Tool to create a property on a specified blog post. Use when you need to add custom metadata to a blog post. Creates a new property with a key-value pair on a specified Confluence blog post. This allo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"key\": \"\",\n  \"value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_create_content_property_for_whiteboard",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/content/property/for/whiteboard",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "content",
            "property",
            "for",
            "whiteboard"
          ]
        },
        "description": "Tool to create a new content property on a whiteboard. Use when you need to attach custom metadata to a Confluence whiteboard.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"value\": \"\",\n  \"whiteboard_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_create_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "page"
          ]
        },
        "description": "Tool to create a new Confluence page in a specified space. Use when you need to create new documentation or content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": {},\n  \"title\": \"\",\n  \"spaceId\": \"\",\n  \"parentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_create_page_property",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/page/property",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "page",
            "property"
          ]
        },
        "description": "Tool to create a property on a Confluence page. Use when you need to add custom metadata or settings to a page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"value\": \"\",\n  \"page_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_create_private_space",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/private/space",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "private",
            "space"
          ]
        },
        "description": "Tool to create a private Confluence space. Use when you need an isolated workspace viewable only by its creator.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"name\": \"\",\n  \"description\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_create_space",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/space",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "space"
          ]
        },
        "description": "Tool to create a new Confluence space. Use when setting up a new knowledge area for organization. Must include a `plain.representation` field, e.g., `{\"plain\": {\"representation\": \"plain\", \"value\": \"te",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"name\": \"\",\n  \"type\": \"\",\n  \"metadata\": \"\",\n  \"description\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_create_space_property",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/space/property",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "space",
            "property"
          ]
        },
        "description": "Tool to create a new property on a Confluence space. Use after confirming the space ID when adding custom metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"value\": \"\",\n  \"spaceId\": \"\",\n  \"version\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_create_whiteboard",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/whiteboard",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "whiteboard"
          ]
        },
        "description": "Tool to create a new Confluence whiteboard. Use when you need to start a collaborative whiteboard session.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"spaceId\": \"\",\n  \"parentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_delete_blogpost_property",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/blogpost/property",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "blogpost",
            "property"
          ]
        },
        "description": "Tool to delete a blog post property. Use when you need to remove custom metadata from a specified blog post.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"propertyId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_delete_content_property_for_page_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/content/property/for/page/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "content",
            "property",
            "for",
            "page",
            "by",
            "id"
          ]
        },
        "description": "Tool to delete a content property from a page by property ID. Use when you need to remove custom metadata from a page for cleanup or auditing. This action deletes a specified content property from a C",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pageId\": \"\",\n  \"propertyId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_delete_content_property_for_whiteboard_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/content/property/for/whiteboard/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "content",
            "property",
            "for",
            "whiteboard",
            "by",
            "id"
          ]
        },
        "description": "Tool to delete a content property from a whiteboard by property ID. Use when you need to remove custom metadata from a whiteboard.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"propertyId\": \"\",\n  \"whiteboardId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_delete_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "page"
          ]
        },
        "description": "Tool to delete a Confluence page. Use with caution as this permanently removes the page and its content with no recovery option. In move or migration workflows, confirm all target pages were successfu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_delete_space",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/space",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "space"
          ]
        },
        "description": "Tool to delete a Confluence space by its key. Use when you need to permanently remove a space. Deletion runs as an asynchronous long-running task; this action waits (briefly) for it to finish and repo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"space_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_delete_space_property",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/space/property",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "space",
            "property"
          ]
        },
        "description": "Tool to delete a space property. Use when you need to remove a property from a Confluence space after review.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"propertyId\": \"\",\n  \"spaceIdOrKey\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_attachment_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/attachment/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "attachment",
            "labels"
          ]
        },
        "description": "Tool to list labels on an attachment. Use after confirming the attachment ID to fetch its labels.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"prefix\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_attachments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/attachments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "attachments"
          ]
        },
        "description": "Tool to retrieve attachments of a Confluence page. Use after confirming page ID to list its attachments (supports pagination).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"pageId\": \"\",\n  \"mediaType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_audit_logs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/audit/logs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "audit",
            "logs"
          ]
        },
        "description": "Tool to retrieve Confluence audit records. Use when you need to fetch and filter audit logs for compliance or troubleshooting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"start\": 0,\n  \"endDate\": 0,\n  \"startDate\": 0,\n  \"searchString\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_blog_posts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/blog/posts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "blog",
            "posts"
          ]
        },
        "description": "Tool to retrieve a list of blog posts. Use when you need a paginated list of Confluence blog posts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_blog_posts_for_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/blog/posts/for/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "blog",
            "posts",
            "for",
            "label"
          ]
        },
        "description": "Tool to list all blog posts under a specific label. Use when you have a label ID and need to retrieve associated blog posts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"limit\": 0,\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_blogpost_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/blogpost/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "blogpost",
            "by",
            "id"
          ]
        },
        "description": "Tool to retrieve a specific Confluence blog post by its ID. Use when you have a blog post ID and need detailed metadata and content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_blogpost_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/blogpost/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "blogpost",
            "labels"
          ]
        },
        "description": "Tool to retrieve labels of a specific Confluence blog post by ID. Use after obtaining the blog post ID to list its labels.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"limit\": 0,\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_blogpost_like_count",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/blogpost/like/count",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "blogpost",
            "like",
            "count"
          ]
        },
        "description": "Tool to get like count for a Confluence blog post. Use after confirming the blog post ID to retrieve total likes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_blogpost_operations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/blogpost/operations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "blogpost",
            "operations"
          ]
        },
        "description": "Tool to retrieve permitted operations for a Confluence blog post. Use after confirming the blog post ID to see allowed actions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_blogpost_version_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/blogpost/version/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "blogpost",
            "version",
            "details"
          ]
        },
        "description": "Tool to retrieve details for a specific version of a blog post. Use when you have a blogpostId and versionNumber and need detailed metadata for that version.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"blogpostId\": \"\",\n  \"versionNumber\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_blogpost_versions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/blogpost/versions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "blogpost",
            "versions"
          ]
        },
        "description": "Tool to retrieve all versions of a specific blog post. Use when you have a blogpostId and need to list version numbers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"blogpostId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_child_pages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/child/pages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "child",
            "pages"
          ]
        },
        "description": "Tool to list all direct child pages of a given Confluence page. Use when you have a parent page ID and need to discover its direct descendants. Response nests child page data under `data.data.results`",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_content_properties_for_blog_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/content/properties/for/blog/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "content",
            "properties",
            "for",
            "blog",
            "post"
          ]
        },
        "description": "Tool to retrieve all content properties on a blog post. Use when you need to list metadata properties set on a specific Confluence blog post.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"blogpost_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_content_properties_for_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/content/properties/for/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "content",
            "properties",
            "for",
            "page"
          ]
        },
        "description": "Tool to retrieve all content properties on a page. Use when you need to list metadata properties set on a specific Confluence page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"page_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_content_restrictions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/content/restrictions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "content",
            "restrictions"
          ]
        },
        "description": "Tool to retrieve restrictions on a Confluence content item. Use when you need to see who can view or edit a page or blog post.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"expand\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_current_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/current/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "current",
            "user"
          ]
        },
        "description": "Tool to get information about the currently authenticated user — always scoped to the account tied to the configured connection, not arbitrary users. Use CONFLUENCE_SEARCH_USERS to look up other users",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_inline_comments_for_blog_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/inline/comments/for/blog/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "inline",
            "comments",
            "for",
            "blog",
            "post"
          ]
        },
        "description": "Tool to retrieve inline comments for a Confluence blog post. Use when you need inline comment details by blog post ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"body_format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "labels"
          ]
        },
        "description": "Tool to retrieve all labels in a Confluence site; use for label discovery when you need to list or page through labels. For label-based filtering, use CONFLUENCE_GET_LABELS_FOR_PAGE or CONFLUENCE_GET_",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_labels_for_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/labels/for/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "labels",
            "for",
            "page"
          ]
        },
        "description": "Tool to retrieve labels of a specific Confluence page by ID. Labels are returned in `data.results[*].name` and are not available in CONFLUENCE_GET_PAGES responses. Use after obtaining the page ID to l",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"limit\": 0,\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_labels_for_space",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/labels/for/space",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "labels",
            "for",
            "space"
          ]
        },
        "description": "Tool to list labels on a space. Use when you need to retrieve labels for a specific space.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"prefix\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_labels_for_space_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/labels/for/space/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "labels",
            "for",
            "space",
            "content"
          ]
        },
        "description": "Tool to list labels on all content in a space. Use when you need to retrieve or filter content labels by space, with pagination and optional prefix filtering. For label discovery across a space before",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"prefix\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_page_ancestors",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/page/ancestors",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "page",
            "ancestors"
          ]
        },
        "description": "Tool to retrieve all ancestors for a given Confluence page by its ID. Use when you need the full page hierarchy.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_page_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/page/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "page",
            "by",
            "id"
          ]
        },
        "description": "Tool to retrieve a Confluence page by its ID. Use when you have a page ID and need its detailed metadata and content. Response body is in `body.storage.value` as Confluence storage format (HTML); stri",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"draft\": false,\n  \"version\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_page_like_count",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/page/like/count",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "page",
            "like",
            "count"
          ]
        },
        "description": "Tool to get like count for a Confluence page. Use after confirming the page ID to retrieve total likes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_page_versions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/page/versions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "page",
            "versions"
          ]
        },
        "description": "Tool to retrieve all versions of a specific Confluence page. Use to audit edit history or to get the latest version.number before calling CONFLUENCE_UPDATE_PAGE — using a stale version.number causes a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"limit\": 0,\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_pages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pages"
          ]
        },
        "description": "Tool to retrieve a paginated list of Confluence pages. Results are permission-scoped to the authenticated user; empty results may reflect access restrictions. Omitting filters like spaceId or status c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"title\": \"\",\n  \"cursor\": \"\",\n  \"status\": \"\",\n  \"subtype\": \"\",\n  \"space_id\": \"\",\n  \"body_format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_space_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/space/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "space",
            "by",
            "id"
          ]
        },
        "description": "Tool to retrieve a Confluence space by its ID. Use when you need detailed metadata of a specific space. Space names are non-unique; use the numeric spaceId or spaceKey from the response for stable ide",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_space_contents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/space/contents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "space",
            "contents"
          ]
        },
        "description": "Tool to retrieve content in a Confluence space. Use when you need to list pages or blogposts of a specific space key. Results are in data.results; follow response._links.next (cursor pagination) until",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"status\": \"\",\n  \"spaceKey\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_space_properties",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/space/properties",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "space",
            "properties"
          ]
        },
        "description": "Tool to get properties of a Confluence space. Use when you need to retrieve custom metadata or settings stored as space properties.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"key\": \"\",\n  \"limit\": 0,\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_spaces",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/spaces",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "spaces"
          ]
        },
        "description": "Tool to retrieve a paginated list of Confluence spaces with optional filtering. Paginate with `cursor`: pass the token from `data._links.next` (or the full next URL) as `cursor` to fetch the next page",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"label\": \"\",\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"expand\": \"\",\n  \"status\": \"\",\n  \"spaceKey\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_get_user_anonymous",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/anonymous",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "anonymous"
          ]
        },
        "description": "Tool to retrieve information about the anonymous user. Use when you need to obtain guest user details before unauthenticated interactions.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_search_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "content"
          ]
        },
        "description": "Searches one page of content from the Confluence v2 API with intelligent title ranking. Call this action again with the cursor from `_links.next` to search the next page. Since the native search endpo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"query\": \"\",\n  \"start\": 0,\n  \"cursor\": \"\",\n  \"expand\": \"\",\n  \"spaceKey\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_search_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "users"
          ]
        },
        "description": "Searches for users using user-specific queries from the Confluence Query Language (CQL).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"start\": 0,\n  \"accountId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_update_blogpost",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/blogpost",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "blogpost"
          ]
        },
        "description": "Tool to update a Confluence blog post's title or content. Use when you need to modify an existing blog post. Ensure you have the latest version number before calling.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"body\": {},\n  \"title\": \"\",\n  \"status\": \"\",\n  \"spaceId\": \"\",\n  \"version\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_update_blogpost_property",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/blogpost/property",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "blogpost",
            "property"
          ]
        },
        "description": "Tool to update a property of a specified blog post. Use when you need to modify custom metadata on a blog post.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"value\": \"\",\n  \"propertyId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_update_content_property_for_page_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/content/property/for/page/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "content",
            "property",
            "for",
            "page",
            "by",
            "id"
          ]
        },
        "description": "Tool to update a content property on a Confluence page. Use when you need to modify an existing metadata property by its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"pageId\": \"\",\n  \"propertyId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_update_content_property_for_whiteboard_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/content/property/for/whiteboard/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "content",
            "property",
            "for",
            "whiteboard",
            "by",
            "id"
          ]
        },
        "description": "Tool to update a content property on a whiteboard. Use when you need to modify metadata on a Confluence whiteboard.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"propertyId\": \"\",\n  \"whiteboardId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_update_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "page"
          ]
        },
        "description": "Tool to update an existing Confluence page, replacing the entire page content. Use when you need to modify existing documentation or content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"body\": {},\n  \"title\": \"\",\n  \"spaceId\": \"\",\n  \"version\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "confluence_update_space_property",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/space/property",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "space",
            "property"
          ]
        },
        "description": "Tool to update a space property. Use when you need to modify custom metadata stored on a Confluence space (requires fetching the current property version first).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"value\": \"\",\n  \"spaceId\": \"\",\n  \"propertyId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}