{
  "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_confluence_get_space_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/confluence/get/space/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "confluence",
            "get",
            "space",
            "by",
            "id"
          ]
        },
        "description": "Tool to retrieve a confluence space by its id. use when you need detailed metadata of a specific space.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": {},\n  \"title\": \"\",\n  \"labels\": \"\",\n  \"status\": \"\",\n  \"spaceId\": \"\",\n  \"metadata\": {},\n  \"parentId\": \"\"\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.",
        "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  \"type\": \"\",\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.",
        "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  \"propertyKey\": \"\"\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.",
        "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 will permanently remove the page from the space.",
        "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.",
        "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  \"propertyKey\": \"\",\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  \"limit\": 0,\n  \"start\": 0\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  \"start\": 0,\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  \"to\": \"\",\n  \"from_\": \"\",\n  \"limit\": 0,\n  \"start\": 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  \"start\": 0\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_blogposts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/blogposts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "blogposts"
          ]
        },
        "description": "Tool to retrieve a list of blog posts. use when you need blog post ids.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\"\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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"limit\": 0,\n  \"start\": 0\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  \"start\": 0,\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. use when you need to check user details or permissions.",
        "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  \"limit\": 0,\n  \"start\": 0,\n  \"expand\": \"\",\n  \"location\": \"\",\n  \"parentVersion\": 0\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 when you need to list or page through labels.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"start\": 0\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. use after obtaining the page id to list its labels.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"limit\": 0,\n  \"start\": 0\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  \"limit\": 0,\n  \"start\": 0\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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\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}",
          "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.",
        "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 after confirming the page id to audit its edit history.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"limit\": 0,\n  \"start\": 0\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 list of pages. use when you need a paginated list of confluence pages.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"type\": \"\",\n  \"label\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"expand\": \"\",\n  \"status\": \"\",\n  \"spaceId\": \"\",\n  \"authorId\": \"\",\n  \"direction\": \"\"\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.",
        "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, blogposts, or attachments of a specific space key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\n  \"status\": \"\",\n  \"spaceKey\": \"\",\n  \"postingDay\": \"\"\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  \"start\": 0\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 list of confluence spaces. use when you need a paginated list of spaces with optional filtering.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"label\": \"\",\n  \"limit\": 0,\n  \"start\": 0,\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 for content by filtering pages from the confluence v2 api with intelligent ranking. since the native search endpoint is deprecated, this action: 1. fetches pages from the v2 pages endpoint wi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"query\": \"\",\n  \"start\": 0,\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  \"cursor\": \"\",\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  \"type\": \"\",\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  \"propertyKey\": \"\"\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. use when you need to modify existing documentation or content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"body\": {},\n  \"type\": \"\",\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  \"spaceKey\": \"\",\n  \"propertyKey\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}