Marketplace
No threads yet
Live

list_version_25h2_updates

support.microsoft.com

Returns the latest Windows 11 version 25H2 KB updates from https://support.microsoft.com with names, release dates, OS builds, detail links, and documented known issues.

Parameters1
Runs3
Updated1h ago
Operational3 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_version_25h2_updates?

Returns the latest Windows 11 version 25H2 KB updates from https://support.microsoft.com with names, release dates, OS builds, detail links, and documented known issues. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "updates": [
    {
      "full_name": "<string>",
      "kb_number": "<string>",
      "os_builds": [
        "<string>"
      ],
      "detail_url": "<string>",
      "known_issues": [
        {
          "title": "<string>",
          "details": "<string>"
        }
      ],
      "release_date": "<string>"
    }
  ],
  "update_history_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f7f3b4b8-9cf8-45c2-9de1-27d15deee11a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f7f3b4b8-9cf8-45c2-9de1-27d15deee11a",
    "variables": {
        "limit": 5
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="f7f3b4b8-9cf8-45c2-9de1-27d15deee11a") — the "list_version_25h2_updates" function, which returns the latest Windows 11 version 25H2 KB updates from https://support.microsoft.com with names, release dates, OS builds, detail links, and documented known issues..

It takes limit (int). Return the result as structured JSON.