{
  "info": {
    "name": "Wachete — mcp.ai",
    "description": "REST API for the Wachete 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/wachete",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "wachete_create_update_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/update/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "update",
            "folder"
          ]
        },
        "description": "Create a new folder or update an existing folder in Wachete. Folders help organize watchers into hierarchical structures. Omit the id parameter to create a new folder, or provide an id to update an ex",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"count\": 0,\n  \"parentId\": \"\",\n  \"failedCount\": 0,\n  \"pausedCount\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wachete_create_watcher",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/watcher",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "watcher"
          ]
        },
        "description": "Create or update a Wachete watcher to monitor web page changes. Watchers check pages at specified intervals and send alerts when changes are detected. Use SinglePage mode for monitoring a single page,",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"url\": \"\",\n  \"name\": \"\",\n  \"xPath\": \"\",\n  \"alerts\": \"\",\n  \"jobType\": \"\",\n  \"urlFilter\": {},\n  \"crawlingDepth\": 0,\n  \"recurrenceInSeconds\": 0,\n  \"notificationEndpoints\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wachete_delete_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "folder"
          ]
        },
        "description": "Permanently deletes a folder along with all nested subfolders and watchers (monitoring tasks). This is a destructive operation that cannot be undone. Use when you need to remove an entire folder struc",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wachete_delete_watcher",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/watcher",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "watcher"
          ]
        },
        "description": "Deletes a website monitoring watcher (task) by its unique ID. This operation is idempotent - deleting a non-existent or already-deleted watcher will succeed without error. Use when you need to permane",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"watcher_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wachete_get_crawler_pages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/crawler/pages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "crawler",
            "pages"
          ]
        },
        "description": "Retrieves all pages monitored by a crawler watcher (portal monitor). Use this to get detailed information about each page being tracked including URLs, last check timestamps, content changes, and erro",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wachete_get_data_history",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/data/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "data",
            "history"
          ]
        },
        "description": "Retrieve history for a wachet (monitor). Returns timestamped snapshots of monitored content showing when changes occurred. Supports time range filtering and optional diff with previous value. Use cont",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"to\": \"\",\n  \"from\": \"\",\n  \"count\": 0,\n  \"returnDiff\": false,\n  \"continuationToken\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wachete_get_folder_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/folder/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "folder",
            "content"
          ]
        },
        "description": "Retrieves the contents of a Wachete folder, including subfolders and watcher tasks. Use this tool to: - List all subfolders and tasks in the root folder (omit parentId) - List contents of a specific f",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"parentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wachete_get_watcher",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/watcher",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "watcher"
          ]
        },
        "description": "Retrieve complete watcher (monitor) definition by ID. Use this to get detailed configuration and current status of a specific monitoring task including URL, XPath selector, alerts, notification endpoi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"watcher_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wachete_list_notifications",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/notifications",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "notifications"
          ]
        },
        "description": "Retrieves notifications from Wachete watchers. Returns notifications for all watchers or filtered by specific watcher ID and/or time range. Useful for checking recent changes detected by your web page",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"to_time\": \"\",\n  \"from_time\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wachete_list_watchers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/watchers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "watchers"
          ]
        },
        "description": "List all monitoring watchers (tasks) configured in your Wachete account. Optionally filter by search query. Returns up to 500 watchers with details including name, URL, monitoring settings, and notifi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wachete_move_items_to_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/move/items/to/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "move",
            "items",
            "to",
            "folder"
          ]
        },
        "description": "Move tasks (watchers) and folders to a specified destination folder. Use this to organize your monitoring structure by relocating items within the folder hierarchy. Provide at least one of folderIds o",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_ids\": \"\",\n  \"folder_id\": \"\",\n  \"folder_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}