# Wachete — MCP server on mcp.ai > Connect your Wachete account and use 11 tools for notifications straight from your AI agent. Connect with your own API key. Wachete is a web monitoring service that allows users to track changes on web pages and receive notifications based on specified criteria. By: mcp.ai · official Page: https://mcp.ai/wachete ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_wachete?ms=1787293560000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/wachete/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/wachete/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/wachete/skill.md Postman collection (v2.1): https://mcp.ai/wachete/postman.json ## Tools - wachete_create_update_folder(id?: string, name?: string, count?: integer, parentId?: string, failedCount?: integer, pausedCount?: integer) — 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 - wachete_create_watcher(id?: string, url: string, name: string, xPath: string, alerts?: object[], jobType?: string, urlFilter?: object, crawlingDepth?: integer, recurrenceInSeconds?: integer, notificationEndpoints?: object[]) — 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, - wachete_delete_folder(folder_id: string) — 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 - wachete_delete_watcher(watcher_id: string) — 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 - wachete_get_crawler_pages(id: string) — 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 - wachete_get_data_history(id: string, to?: string, from?: string, count?: integer, returnDiff?: boolean, continuationToken?: string) — 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 - wachete_get_folder_content(parentId?: string) — 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 - wachete_get_watcher(watcher_id: string) — 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 - wachete_list_notifications(task_id?: string, to_time?: string, from_time?: string) — 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 - wachete_list_watchers(query?: string) — 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 - wachete_move_items_to_folder(task_ids?: string[], folder_id?: string, folder_ids?: string[]) — 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 ## Example prompts - "What can I do in Wachete?" - "Show me a summary of my Wachete account" ## Links Docs: https://mcp.ai/docs/mcps/wachete Website: https://mcp.ai/mcps/wachete