instatunnel 1.1.7 → 1.1.8

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 CHANGED
@@ -46,8 +46,17 @@ instatunnel 3000 --subdomain myapp
46
46
  ## MCP tunnel support (Pro and Business)
47
47
 
48
48
  ```bash
49
- # Login once
50
- instatunnel auth login
49
+ # New users: start auth flow (verification email)
50
+ instatunnel auth login -e you@example.com
51
+
52
+ # Existing users: save API key locally
53
+ instatunnel auth set-key "it_your_api_key"
54
+
55
+ # PowerShell copy helper (Windows)
56
+ Set-Clipboard "it_your_api_key"
57
+
58
+ # Save directly from clipboard (Windows PowerShell)
59
+ instatunnel auth set-key "$(Get-Clipboard)"
51
60
 
52
61
  # MCP tunnel (default transport v1)
53
62
  instatunnel 8787 --mcp
@@ -0,0 +1,102 @@
1
+ # InstaTunnel
2
+
3
+ InstaTunnel is a secure localhost tunnel for developers who want a fast ngrok alternative.
4
+
5
+ It helps you expose local apps, APIs, webhook endpoints, and MCP services over HTTPS in seconds.
6
+
7
+ ## Why developers choose InstaTunnel
8
+
9
+ - Fast setup: tunnel your local app with one command
10
+ - Custom subdomains: create memorable URLs on `instatunnel.my`
11
+ - Dashboard analytics: inspect traffic and usage
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
15
+ - Built for daily dev workflows: demos, QA, webhooks, mobile testing
16
+
17
+ ## InstaTunnel vs ngrok
18
+
19
+ If you are searching for:
20
+ - ngrok alternative
21
+ - localhost tunnel alternative
22
+ - free tunnel for webhook testing
23
+ - custom subdomain tunneling tool
24
+
25
+ InstaTunnel is designed for the same core use case with a simpler setup and strong defaults.
26
+
27
+ ## Install
28
+
29
+ ```bash
30
+ npm install -g instatunnel
31
+ ```
32
+
33
+ ## Quick start
34
+
35
+ ```bash
36
+ # Auto-detect your local app
37
+ instatunnel
38
+
39
+ # Tunnel a specific local port
40
+ instatunnel 3000
41
+
42
+ # Use a custom subdomain
43
+ instatunnel 3000 --subdomain myapp
44
+ ```
45
+
46
+ ## MCP tunnel support (Pro and Business)
47
+
48
+ ```bash
49
+ # New users: start auth flow (verification email)
50
+ instatunnel auth login -e you@example.com
51
+
52
+ # Existing users: save API key locally
53
+ instatunnel auth set-key "it_your_api_key"
54
+
55
+ # PowerShell copy helper (Windows)
56
+ Set-Clipboard "it_your_api_key"
57
+
58
+ # MCP tunnel (default transport v1)
59
+ instatunnel 8787 --mcp
60
+
61
+ # MCP tunnel with streaming transport v2
62
+ instatunnel 8787 --mcp --transport v2
63
+ ```
64
+
65
+ Optional staged MCP token header (`X-InstaTunnel-MCP-Token`):
66
+
67
+ ```bash
68
+ export INSTATUNNEL_MCP_TOKEN="your-shared-secret"
69
+ instatunnel 8787 --mcp --transport v2
70
+ ```
71
+
72
+ MCP notes:
73
+ - v1 stays default for compatibility.
74
+ - v2 is recommended for streaming MCP responses.
75
+ - MCP traffic has dedicated protective limits.
76
+
77
+ ## Popular use cases
78
+
79
+ - Localhost API sharing for frontend-backend integration
80
+ - Webhook testing for Stripe, GitHub, Slack, and custom integrations
81
+ - QA and client demos from local machines
82
+ - Mobile device testing against local environments
83
+ - MCP endpoint exposure for remote AI tooling workflows
84
+
85
+ ## Common search terms
86
+
87
+ People usually find InstaTunnel via terms like:
88
+ - ngrok alternative
89
+ - localhost tunnel
90
+ - expose localhost to internet
91
+ - webhook testing tool
92
+ - https tunnel for local development
93
+ - custom subdomain tunnel
94
+ - MCP tunnel
95
+ - tunnel for local API
96
+
97
+ ## Links
98
+
99
+ - Website: https://instatunnel.my
100
+ - Docs: https://instatunnel.my/docs
101
+ - Pricing: https://instatunnel.my/pricing
102
+ - Dashboard: https://dashboard.instatunnel.my
package/bin/instatunnel CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "instatunnel",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "Expose localhost instantly with custom domains, analytics, and MCP tunnel support",
5
5
  "main": "install.js",
6
6
  "bin": {