clishop 0.3.0 → 0.3.1

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
@@ -16,6 +16,7 @@
16
16
  ## Works with
17
17
 
18
18
  <p>
19
+ <img alt="VS Code" src="https://img.shields.io/badge/VS%20Code-Copilot-007ACC?style=for-the-badge&logo=visualstudiocode&logoColor=white" />
19
20
  <img alt="Claude" src="https://img.shields.io/badge/Claude-Supported-7C3AED?style=for-the-badge&logo=anthropic&logoColor=white" />
20
21
  <img alt="GPT" src="https://img.shields.io/badge/GPT-Supported-10A37F?style=for-the-badge&logo=openai&logoColor=white" />
21
22
  <img alt="Gemini" src="https://img.shields.io/badge/Gemini-Supported-4285F4?style=for-the-badge&logo=googlegemini&logoColor=white" />
@@ -32,15 +33,56 @@ Built for the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) e
32
33
 
33
34
  ## MCP Server
34
35
 
35
- CLISHOP ships as a native MCP server. Every Claude Desktop, Cursor, Windsurf, or other MCP-compatible client gets access to 19 shopping tools out of the box.
36
+ CLISHOP ships as a native MCP server. VS Code (GitHub Copilot), Claude Desktop, Cursor, Windsurf, and any MCP-compatible client gets access to 19 shopping tools out of the box.
36
37
 
37
- ### Claude Desktop
38
+ Install globally and run the dedicated binary:
38
39
 
39
- Add to `claude_desktop_config.json`:
40
+ ```bash
41
+ npm install -g clishop
42
+ clishop-mcp
43
+ ```
44
+
45
+ Or run without installing:
46
+
47
+ ```bash
48
+ npx -y clishop --mcp
49
+ ```
50
+
51
+ ### VS Code (GitHub Copilot)
52
+
53
+ Add to `.vscode/mcp.json` in your workspace:
40
54
 
41
55
  ```json
42
56
  {
43
- "mcpServers": {
57
+ "servers": {
58
+ "clishop": {
59
+ "command": "clishop-mcp",
60
+ "args": []
61
+ }
62
+ }
63
+ }
64
+ ```
65
+
66
+ Or add to your VS Code `settings.json`:
67
+
68
+ ```json
69
+ {
70
+ "mcp": {
71
+ "servers": {
72
+ "clishop": {
73
+ "command": "clishop-mcp",
74
+ "args": []
75
+ }
76
+ }
77
+ }
78
+ }
79
+ ```
80
+
81
+ If you don't have clishop installed globally, use npx instead:
82
+
83
+ ```json
84
+ {
85
+ "servers": {
44
86
  "clishop": {
45
87
  "command": "npx",
46
88
  "args": ["-y", "clishop", "--mcp"]
@@ -49,7 +91,9 @@ Add to `claude_desktop_config.json`:
49
91
  }
50
92
  ```
51
93
 
52
- Or if installed globally:
94
+ ### Claude Desktop
95
+
96
+ Add to `claude_desktop_config.json`:
53
97
 
54
98
  ```json
55
99
  {
@@ -61,6 +105,19 @@ Or if installed globally:
61
105
  }
62
106
  ```
63
107
 
108
+ Or if not installed globally:
109
+
110
+ ```json
111
+ {
112
+ "mcpServers": {
113
+ "clishop": {
114
+ "command": "npx",
115
+ "args": ["-y", "clishop", "--mcp"]
116
+ }
117
+ }
118
+ }
119
+ ```
120
+
64
121
  ### Cursor
65
122
 
66
123
  Add to `.cursor/mcp.json`:
@@ -69,8 +126,7 @@ Add to `.cursor/mcp.json`:
69
126
  {
70
127
  "mcpServers": {
71
128
  "clishop": {
72
- "command": "npx",
73
- "args": ["-y", "clishop", "--mcp"]
129
+ "command": "clishop-mcp"
74
130
  }
75
131
  }
76
132
  }
@@ -84,8 +140,7 @@ Add to `~/.windsurf/mcp.json`:
84
140
  {
85
141
  "mcpServers": {
86
142
  "clishop": {
87
- "command": "npx",
88
- "args": ["-y", "clishop", "--mcp"]
143
+ "command": "clishop-mcp"
89
144
  }
90
145
  }
91
146
  }
package/dist/index.js CHANGED
@@ -4077,7 +4077,7 @@ function registerFeedbackCommands(program2) {
4077
4077
 
4078
4078
  // src/index.ts
4079
4079
  var program = new Command();
4080
- program.name("clishop").version("0.3.0").description(
4080
+ program.name("clishop").version("0.3.1").description(
4081
4081
  chalk15.bold("CLISHOP") + ' \u2014 Order anything from your terminal.\n\n Use agents to set safety limits, addresses, and payment methods.\n The "default" agent is used when no agent is specified.'
4082
4082
  ).option("--agent <name>", "Use a specific agent for this command").hook("preAction", (thisCommand) => {
4083
4083
  const agentOpt = thisCommand.opts().agent;
package/dist/mcp.js CHANGED
@@ -13810,7 +13810,7 @@ function safeCall(fn) {
13810
13810
  var server = new McpServer(
13811
13811
  {
13812
13812
  name: "clishop",
13813
- version: "0.3.0"
13813
+ version: "0.3.1"
13814
13814
  },
13815
13815
  {
13816
13816
  capabilities: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clishop",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "mcpName": "io.github.StefDCL/clishop",
5
5
  "description": "CLISHOP — Order anything from your terminal",
6
6
  "main": "dist/index.js",
package/server.json CHANGED
@@ -6,24 +6,18 @@
6
6
  "url": "https://github.com/DavooxBv2/CLISHOP",
7
7
  "source": "github"
8
8
  },
9
- "version": "0.2.1",
9
+ "version": "0.3.0",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "identifier": "clishop",
14
- "version": "0.2.1",
14
+ "version": "0.3.0",
15
+ "runtime": "node",
16
+ "args": ["--mcp"],
15
17
  "transport": {
16
18
  "type": "stdio"
17
19
  },
18
- "environmentVariables": [
19
- {
20
- "description": "CLISHOP API key for authentication",
21
- "isRequired": true,
22
- "format": "string",
23
- "isSecret": true,
24
- "name": "CLISHOP_API_KEY"
25
- }
26
- ]
20
+ "environmentVariables": []
27
21
  }
28
22
  ]
29
23
  }