The whole hunk
from line 30, old and new numbered
/
lines
from line 30
3030
3131- `"anthropic-beta": array of AnthropicBeta`
3232
33 Optional header to specify the beta version(s) you want to use.
33 This endpoint is in beta: requests must send `mcp-tunnels-2026-05-19` in this header.
3434
3535 - `string`
3636
from line 185
185185curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates \
186186 -H 'Content-Type: application/json' \
187187 -H 'anthropic-version: 2023-06-01' \
188 -H 'anthropic-beta: mcp-tunnels-2026-05-19' \
188189 -H "X-Api-Key: $ANTHROPIC_API_KEY" \
189190 -d '{
190191 "ca_certificate_pem": "-----BEGIN CERTIFICATE-----\nMIIBexampleEXAMPLEexampleEXAMPLEexampleEXAMPLEexampleEXAMPLEexa\n...illustrative placeholder, not a real certificate...\n-----END CERTIFICATE-----\n"
from line 248
247248
248249- `"anthropic-beta": array of AnthropicBeta`
249250
250 Optional header to specify the beta version(s) you want to use.
251 This endpoint is in beta: requests must send `mcp-tunnels-2026-05-19` in this header.
251252
252253 - `string`
253254
from line 397
396397```bash
397398curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates \
398399 -H 'anthropic-version: 2023-06-01' \
400 -H 'anthropic-beta: mcp-tunnels-2026-05-19' \
399401 -H "X-Api-Key: $ANTHROPIC_API_KEY"
400402```
401403
from line 444
442444
443445- `"anthropic-beta": array of AnthropicBeta`
444446
445 Optional header to specify the beta version(s) you want to use.
447 This endpoint is in beta: requests must send `mcp-tunnels-2026-05-19` in this header.
446448
447449 - `string`
448450
from line 589
587589```bash
588590curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates/$CERTIFICATE_ID \
589591 -H 'anthropic-version: 2023-06-01' \
592 -H 'anthropic-beta: mcp-tunnels-2026-05-19' \
590593 -H "X-Api-Key: $ANTHROPIC_API_KEY"
591594```
592595
from line 635
632635
633636- `"anthropic-beta": array of AnthropicBeta`
634637
635 Optional header to specify the beta version(s) you want to use.
638 This endpoint is in beta: requests must send `mcp-tunnels-2026-05-19` in this header.
636639
637640 - `string`
638641
from line 781
778781curl https://api.anthropic.com/v1/organizations/tunnels/$TUNNEL_ID/certificates/$CERTIFICATE_ID/archive \
779782 -X POST \
780783 -H 'anthropic-version: 2023-06-01' \
784 -H 'anthropic-beta: mcp-tunnels-2026-05-19' \
781785 -H "X-Api-Key: $ANTHROPIC_API_KEY"
782786```
783787