Source Intelligence
Sweep 28 Aug 2026 ยท 00:00Z Build v2.1.250 478 read Stable v2.1.236 Latest v2.1.250 Next v2.1.250 Feeds RSS JSON llms.txt

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

One change

Create Tunnel

api/beta/tunnels/create

first seen The page's own history The capture it came from

Nearest release: v2.1.245, published an hour after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

api/beta/tunnels/create Changed · +15 / -16 lines

# Create Tunnel ## Headers ## Body parameters ## Returns ## Example ### Response (200) ## Create Tunnel ### Header Parameters ### Body Parameters ### Returns ### Example #### Response

from line 1
----
-title: Create Tunnel
-url: https://platform.claude.com/docs/en/api/beta/tunnels/create
----
+# Create Tunnel
 
-## Create Tunnel
+**POST** `/v1/tunnels`
 
-**post** `/v1/tunnels`
-
 The Tunnels API is in research preview. It requires the `anthropic-beta: mcp-tunnels-2026-06-22` header and may change without a deprecation period. It supersedes the Admin API endpoints at `/v1/organizations/tunnels`, which remain available during a migration window.
 
 Creates a tunnel. Creation allocates a fresh hostname and provisions the tunnel; it is not idempotent. The new tunnel rejects MCP traffic until at least one CA certificate is added.
 
-### Header Parameters
+## Headers
 
 - `"anthropic-beta": optional array of AnthropicBeta`
 
from line 84
 
     - `"mid-conversation-tool-changes-2026-07-01"`
 
-### Body Parameters
+## Body parameters
 
 - `display_name: optional string or null`
 
   Optional human-readable name for the tunnel (1-255 characters).
 
-### Returns
+  minLength: 1, maxLength: 255
 
-- `BetaTunnel object { id, archived_at, created_at, 3 more }`
+## Returns
 
+- `BetaTunnel object`
+
   An MCP tunnel.
 
   - `id: string`
from line 106
 
     A timestamp in RFC 3339 format
 
+    format: date-time
+
   - `created_at: string`
 
     A timestamp in RFC 3339 format
 
+    format: date-time
+
   - `display_name: string or null`
 
     Human-readable name for the tunnel (1-255 characters). Null if unset.
from line 124
 
   - `type: "tunnel"`
 
-    - `"tunnel"`
+## Example
 
-### Example
-
-```http
+```bash
 curl https://api.anthropic.com/v1/tunnels \
     -H 'Content-Type: application/json' \
     -H 'anthropic-version: 2023-06-01' \
from line 135
     -d '{}'
 ```
 
-#### Response
+### Response (200)
 
 ```json
 {