instatunnel 1.1.6 → 1.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,9 @@ It helps you expose local apps, APIs, webhook endpoints, and MCP services over H
|
|
|
9
9
|
- Fast setup: tunnel your local app with one command
|
|
10
10
|
- Custom subdomains: create memorable URLs on `instatunnel.my`
|
|
11
11
|
- Dashboard analytics: inspect traffic and usage
|
|
12
|
-
- Pro features: custom domains and MCP endpoint tunnels
|
|
12
|
+
- Pro features: custom domains and MCP endpoint tunnels (beta)
|
|
13
|
+
- MCP transport v2 streaming support for long-running responses
|
|
14
|
+
- MCP security controls: staged token header + stricter MCP rate limits
|
|
13
15
|
- Built for daily dev workflows: demos, QA, webhooks, mobile testing
|
|
14
16
|
|
|
15
17
|
## InstaTunnel vs ngrok
|
|
@@ -54,13 +56,18 @@ instatunnel 8787 --mcp
|
|
|
54
56
|
instatunnel 8787 --mcp --transport v2
|
|
55
57
|
```
|
|
56
58
|
|
|
57
|
-
Optional staged MCP token header:
|
|
59
|
+
Optional staged MCP token header (`X-InstaTunnel-MCP-Token`):
|
|
58
60
|
|
|
59
61
|
```bash
|
|
60
62
|
export INSTATUNNEL_MCP_TOKEN="your-shared-secret"
|
|
61
63
|
instatunnel 8787 --mcp --transport v2
|
|
62
64
|
```
|
|
63
65
|
|
|
66
|
+
MCP notes:
|
|
67
|
+
- v1 stays default for compatibility.
|
|
68
|
+
- v2 is recommended for streaming MCP responses.
|
|
69
|
+
- MCP traffic has dedicated protective limits.
|
|
70
|
+
|
|
64
71
|
## Popular use cases
|
|
65
72
|
|
|
66
73
|
- Localhost API sharing for frontend-backend integration
|