instatunnel 1.1.8 → 1.1.9

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
@@ -41,6 +41,9 @@ instatunnel 3000
41
41
 
42
42
  # Use a custom subdomain
43
43
  instatunnel 3000 --subdomain myapp
44
+
45
+ # Region flag (single-region deployment currently supports only us)
46
+ instatunnel 3000 --region us
44
47
  ```
45
48
 
46
49
  ## MCP tunnel support (Pro and Business)
@@ -58,6 +61,12 @@ Set-Clipboard "it_your_api_key"
58
61
  # Save directly from clipboard (Windows PowerShell)
59
62
  instatunnel auth set-key "$(Get-Clipboard)"
60
63
 
64
+ # macOS copy helper
65
+ pbpaste | xargs -I {} instatunnel auth set-key "{}"
66
+
67
+ # Linux copy helper (xclip)
68
+ xclip -o -selection clipboard | xargs -I {} instatunnel auth set-key "{}"
69
+
61
70
  # MCP tunnel (default transport v1)
62
71
  instatunnel 8787 --mcp
63
72
 
@@ -77,6 +86,16 @@ MCP notes:
77
86
  - v2 is recommended for streaming MCP responses.
78
87
  - MCP traffic has dedicated protective limits.
79
88
 
89
+ ## CLI analytics and logs
90
+
91
+ ```bash
92
+ # Usage stats (last 30 days, requires API key)
93
+ instatunnel --stats
94
+
95
+ # Live request-log polling (requires Pro/Business for request logs)
96
+ instatunnel --logs
97
+ ```
98
+
80
99
  ## Popular use cases
81
100
 
82
101
  - Localhost API sharing for frontend-backend integration
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.8",
3
+ "version": "1.1.9",
4
4
  "description": "Expose localhost instantly with custom domains, analytics, and MCP tunnel support",
5
5
  "main": "install.js",
6
6
  "bin": {
@@ -1,102 +0,0 @@
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