@askthew/mcp-plugin 0.2.5 → 0.2.6

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
@@ -30,7 +30,7 @@ Create a workspace token in Ask The W, then run the installer from your coding a
30
30
  Codex:
31
31
 
32
32
  ```bash
33
- npx -y @askthew/mcp-plugin@latest install \
33
+ npx -y --prefer-online @askthew/mcp-plugin@latest install \
34
34
  --host codex \
35
35
  --token "<ASKTHEW_INSTALL_TOKEN>" \
36
36
  --api-url "https://app.askthew.com/" \
@@ -40,7 +40,7 @@ npx -y @askthew/mcp-plugin@latest install \
40
40
  Claude Code:
41
41
 
42
42
  ```bash
43
- npx -y @askthew/mcp-plugin@latest install \
43
+ npx -y --prefer-online @askthew/mcp-plugin@latest install \
44
44
  --host claude_code \
45
45
  --token "<ASKTHEW_INSTALL_TOKEN>" \
46
46
  --api-url "https://app.askthew.com/" \
@@ -50,7 +50,7 @@ npx -y @askthew/mcp-plugin@latest install \
50
50
  Cursor:
51
51
 
52
52
  ```bash
53
- npx -y @askthew/mcp-plugin@latest install \
53
+ npx -y --prefer-online @askthew/mcp-plugin@latest install \
54
54
  --host cursor \
55
55
  --token "<ASKTHEW_INSTALL_TOKEN>" \
56
56
  --api-url "https://app.askthew.com/" \
@@ -86,7 +86,7 @@ Codex example:
86
86
  ```toml
87
87
  [mcp_servers.askthew]
88
88
  command = "npx"
89
- args = ["-y", "@askthew/mcp-plugin@latest"]
89
+ args = ["-y", "--prefer-online", "@askthew/mcp-plugin@latest"]
90
90
  env = { ASKTHEW_INSTALL_TOKEN = "<ASKTHEW_INSTALL_TOKEN>", ASKTHEW_HOST_TYPE = "codex", ASKTHEW_API_URL = "https://app.askthew.com/", ASKTHEW_SERVER_NAME = "askthew" }
91
91
  ```
92
92
 
@@ -97,7 +97,7 @@ Claude Code and Cursor use an MCP JSON entry like this:
97
97
  "mcpServers": {
98
98
  "askthew": {
99
99
  "command": "npx",
100
- "args": ["-y", "@askthew/mcp-plugin@latest"],
100
+ "args": ["-y", "--prefer-online", "@askthew/mcp-plugin@latest"],
101
101
  "env": {
102
102
  "ASKTHEW_INSTALL_TOKEN": "<ASKTHEW_INSTALL_TOKEN>",
103
103
  "ASKTHEW_HOST_TYPE": "codex",
package/dist/install.js CHANGED
@@ -20,7 +20,7 @@ export function resolveSettingsPath(input) {
20
20
  export function createServerEntry(input) {
21
21
  return {
22
22
  command: "npx",
23
- args: ["-y", "@askthew/mcp-plugin@latest"],
23
+ args: ["-y", "--prefer-online", "@askthew/mcp-plugin@latest"],
24
24
  env: {
25
25
  ASKTHEW_INSTALL_TOKEN: input.token,
26
26
  ASKTHEW_API_URL: input.apiUrl,
@@ -127,6 +127,7 @@ export function formatInstallCommand(input) {
127
127
  return [
128
128
  "npx",
129
129
  "-y",
130
+ "--prefer-online",
130
131
  "@askthew/mcp-plugin@latest",
131
132
  "install",
132
133
  "--host",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askthew/mcp-plugin",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "private": false,
5
5
  "description": "Ask The W MCP connector for capturing compact coding-agent session signals.",
6
6
  "type": "module",