clishop 0.2.0 → 0.3.0
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/LICENSE +216 -0
- package/README.md +447 -195
- package/SECURITY.md +25 -0
- package/dist/chunk-RHBOI27D.js +192 -0
- package/dist/chunk-ZF3JIQRK.js +108 -0
- package/dist/config-63FY6NWX.js +24 -0
- package/dist/index.js +975 -727
- package/dist/mcp.d.ts +19 -0
- package/dist/mcp.js +14430 -0
- package/package.json +14 -4
- package/server.json +29 -0
- package/.cursor/rules/commit-workflow.mdc +0 -42
- package/src/api.ts +0 -89
- package/src/auth.ts +0 -117
- package/src/commands/address.ts +0 -213
- package/src/commands/advertise.ts +0 -702
- package/src/commands/agent.ts +0 -177
- package/src/commands/auth.ts +0 -122
- package/src/commands/config.ts +0 -56
- package/src/commands/order.ts +0 -334
- package/src/commands/payment.ts +0 -108
- package/src/commands/review.ts +0 -412
- package/src/commands/search.ts +0 -1319
- package/src/commands/setup.ts +0 -644
- package/src/commands/status.ts +0 -131
- package/src/commands/store.ts +0 -302
- package/src/commands/support.ts +0 -264
- package/src/config.ts +0 -127
- package/src/index.ts +0 -80
- package/tsconfig.json +0 -22
package/dist/mcp.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* CLISHOP MCP Server
|
|
4
|
+
*
|
|
5
|
+
* Exposes CLISHOP shopping tools over the Model Context Protocol (stdio transport).
|
|
6
|
+
* Every Claude Desktop, Cursor, Windsurf, or other MCP client gets access to:
|
|
7
|
+
* - product search (local + extended across vendor stores)
|
|
8
|
+
* - order placement ("buy")
|
|
9
|
+
* - order management (list, show, cancel, reorder)
|
|
10
|
+
* - address CRUD
|
|
11
|
+
* - payment method management
|
|
12
|
+
* - store browsing
|
|
13
|
+
* - agent (safety profile) management
|
|
14
|
+
* - reviews, support tickets, advertise requests, feedback
|
|
15
|
+
* - account status
|
|
16
|
+
*/
|
|
17
|
+
declare function startMcpServer(): Promise<void>;
|
|
18
|
+
|
|
19
|
+
export { startMcpServer };
|