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/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 };