@tunnelhub/mcp 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +8 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -37,10 +37,10 @@ Clientes recomendados:
37
37
 
38
38
  ## 🚀 Comece em 2 minutos
39
39
 
40
- A forma principal de uso é via `npx`:
40
+ A forma principal de uso é via `npx` com o bin explícito:
41
41
 
42
42
  ```bash
43
- npx @tunnelhub/mcp
43
+ npx -y @tunnelhub/mcp@latest
44
44
  ```
45
45
 
46
46
  Se você estiver desenvolvendo localmente:
@@ -67,7 +67,7 @@ Você não precisa decorar o nome das tools. Pode pedir em linguagem natural, e
67
67
  Depois da publicação, a forma recomendada será:
68
68
 
69
69
  ```bash
70
- opencode mcp add tunnelhub -- npx @tunnelhub/mcp
70
+ opencode mcp add tunnelhub -- npx -y @tunnelhub/mcp@latest
71
71
  ```
72
72
 
73
73
  Para desenvolvimento local:
@@ -93,7 +93,8 @@ Exemplo completo:
93
93
  "type": "local",
94
94
  "command": [
95
95
  "npx",
96
- "@tunnelhub/mcp"
96
+ "-y",
97
+ "@tunnelhub/mcp@latest"
97
98
  ],
98
99
  "enabled": true,
99
100
  "environment": {
@@ -133,7 +134,7 @@ Exemplo de configuração no `claude_desktop_config.json`:
133
134
  "mcpServers": {
134
135
  "tunnelhub": {
135
136
  "command": "npx",
136
- "args": ["@tunnelhub/mcp"],
137
+ "args": ["-y", "@tunnelhub/mcp@latest"],
137
138
  "env": {
138
139
  "OAUTH_CALLBACK_PORT": "3333"
139
140
  }
@@ -167,7 +168,7 @@ Use o mesmo comando `stdio` do cliente MCP:
167
168
  "mcpServers": {
168
169
  "tunnelhub": {
169
170
  "command": "npx",
170
- "args": ["@tunnelhub/mcp"],
171
+ "args": ["-y", "@tunnelhub/mcp@latest"],
171
172
  "env": {
172
173
  "OAUTH_CALLBACK_PORT": "3333"
173
174
  }
@@ -197,7 +198,7 @@ Exemplo usando build local:
197
198
  Se o cliente aceitar um comando local, use:
198
199
 
199
200
  ```bash
200
- npx @tunnelhub/mcp
201
+ npx -y @tunnelhub/mcp@latest
201
202
  ```
202
203
 
203
204
  Ou, em desenvolvimento:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tunnelhub/mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server for TunnelHub automations and monitoring",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",