jujugrowth-mcp 1.0.1 → 1.0.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/package.json +1 -1
- package/server.mjs +24 -0
package/package.json
CHANGED
package/server.mjs
CHANGED
|
@@ -69,6 +69,30 @@ const TOOLS = [
|
|
|
69
69
|
run: async (a) =>
|
|
70
70
|
call("POST", `/recommendations/${a.tenantId}/${a.recId}/handled`, a.note ? { note: a.note } : undefined),
|
|
71
71
|
},
|
|
72
|
+
{
|
|
73
|
+
name: "request_site_advice",
|
|
74
|
+
description:
|
|
75
|
+
"Pro: kick off a fresh website improvement analysis for a business. The Site Advisor reads the live site + competitors and files a new recommendation (~3-5 min). Costs LLM tokens; requires an active (Pro) account.",
|
|
76
|
+
inputSchema: {
|
|
77
|
+
type: "object",
|
|
78
|
+
properties: { tenantId: { type: "string" } },
|
|
79
|
+
required: ["tenantId"],
|
|
80
|
+
additionalProperties: false,
|
|
81
|
+
},
|
|
82
|
+
run: async (a) => call("POST", `/site-advice/${a.tenantId}`),
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
name: "request_campaign_brief",
|
|
86
|
+
description:
|
|
87
|
+
"Pro: kick off a campaign brief for a business (the system picks the platform). Files a new recommendation with the economics shown (~2-3 min). Costs LLM tokens; requires an active (Pro) account.",
|
|
88
|
+
inputSchema: {
|
|
89
|
+
type: "object",
|
|
90
|
+
properties: { tenantId: { type: "string" } },
|
|
91
|
+
required: ["tenantId"],
|
|
92
|
+
additionalProperties: false,
|
|
93
|
+
},
|
|
94
|
+
run: async (a) => call("POST", `/campaign-brief/${a.tenantId}`),
|
|
95
|
+
},
|
|
72
96
|
];
|
|
73
97
|
|
|
74
98
|
function send(msg) {
|