@agentutility/mcp-retail 0.1.0 → 0.1.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.
- package/README.md +4 -4
- package/dist/tools.generated.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -51,9 +51,9 @@ USDC on Base contract: `0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913`
|
|
|
51
51
|
| Tool | Description |
|
|
52
52
|
|---|---|
|
|
53
53
|
| `find-products` | (0.02 USDC/call) Find products API (alias of product-search). Returns ranked product results with buy links, retailer, snippet, and detected price for a shopping query. Backed by Decodo Google search scoped to buy intent. |
|
|
54
|
-
| `product-describe` | (0.01 USDC/call)
|
|
55
|
-
| `product-description` | (0.01 USDC/call) Product description API (alias of product-describe). Turns a product name + attributes into a marketing-ready description, selling points, key features, and listing titles.
|
|
56
|
-
| `product-search` | (0.02 USDC/call)
|
|
54
|
+
| `product-describe` | (0.01 USDC/call) Writes conversion-focused product descriptions and listing copy from a product name and optional category, audience, and attributes. Returns a description, bullet selling points, key features, a positioning angle, and suggested listing titles. AI-written copy generated from the facts you supply; it does not invent specs or claims. Use it as a product description generator, e-commerce copywriter, or selling points API. |
|
|
55
|
+
| `product-description` | (0.01 USDC/call) Product description API (alias of product-describe). Turns a product name + attributes into a marketing-ready description, selling points, key features, and listing titles. AI-written copy from supplied facts only. |
|
|
56
|
+
| `product-search` | (0.02 USDC/call) Searches shopping results for a product query (and optional retailer), returning ranked results with product title, buy link, retailer domain, snippet, and any detected price. Backed by Decodo Google search scoped to buy intent. For general web search use search/web-search. Use it as a product search or shopping search API to find products and buy links for agents. |
|
|
57
57
|
| `shop-search` | (0.02 USDC/call) Shopping search API (alias of product-search). Find products and buy links for a query with title, buy link, retailer, snippet, and detected price. Backed by Decodo Google search scoped to buy intent. |
|
|
58
58
|
|
|
59
59
|
## How it works
|
|
@@ -75,4 +75,4 @@ The agent never sees the payment flow — it just gets the result.
|
|
|
75
75
|
|
|
76
76
|
---
|
|
77
77
|
|
|
78
|
-
**Version:** 0.1.
|
|
78
|
+
**Version:** 0.1.2 · **License:** MIT
|
package/dist/tools.generated.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** Auto-generated by scripts/generate-mcp-clusters.mjs. Do not edit by hand. */
|
|
2
2
|
export const CLUSTER_SLUG = "retail";
|
|
3
|
-
export const VERSION = "0.1.
|
|
3
|
+
export const VERSION = "0.1.2";
|
|
4
4
|
export const TOOLS = [
|
|
5
5
|
{
|
|
6
6
|
"name": "find-products",
|
|
@@ -31,7 +31,7 @@ export const TOOLS = [
|
|
|
31
31
|
{
|
|
32
32
|
"name": "product-describe",
|
|
33
33
|
"http_name": "product-describe",
|
|
34
|
-
"description": "(0.01 USDC/call)
|
|
34
|
+
"description": "(0.01 USDC/call) Writes conversion-focused product descriptions and listing copy from a product name and optional category, audience, and attributes. Returns a description, bullet selling points, key features, a positioning angle, and suggested listing titles. AI-written copy generated from the facts you supply; it does not invent specs or claims. Use it as a product description generator, e-commerce copywriter, or selling points API.",
|
|
35
35
|
"method": "POST",
|
|
36
36
|
"input_schema": {
|
|
37
37
|
"type": "object",
|
|
@@ -65,7 +65,7 @@ export const TOOLS = [
|
|
|
65
65
|
{
|
|
66
66
|
"name": "product-description",
|
|
67
67
|
"http_name": "product-description",
|
|
68
|
-
"description": "(0.01 USDC/call) Product description API (alias of product-describe). Turns a product name + attributes into a marketing-ready description, selling points, key features, and listing titles.
|
|
68
|
+
"description": "(0.01 USDC/call) Product description API (alias of product-describe). Turns a product name + attributes into a marketing-ready description, selling points, key features, and listing titles. AI-written copy from supplied facts only.",
|
|
69
69
|
"method": "POST",
|
|
70
70
|
"input_schema": {
|
|
71
71
|
"type": "object",
|
|
@@ -99,7 +99,7 @@ export const TOOLS = [
|
|
|
99
99
|
{
|
|
100
100
|
"name": "product-search",
|
|
101
101
|
"http_name": "product-search",
|
|
102
|
-
"description": "(0.02 USDC/call)
|
|
102
|
+
"description": "(0.02 USDC/call) Searches shopping results for a product query (and optional retailer), returning ranked results with product title, buy link, retailer domain, snippet, and any detected price. Backed by Decodo Google search scoped to buy intent. For general web search use search/web-search. Use it as a product search or shopping search API to find products and buy links for agents.",
|
|
103
103
|
"method": "POST",
|
|
104
104
|
"input_schema": {
|
|
105
105
|
"type": "object",
|
package/package.json
CHANGED