listingbureau-mcp 0.1.8 → 0.1.10

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
@@ -13,7 +13,7 @@ The only ranking-focused Amazon MCP server. Create ranking campaigns, set campai
13
13
  Built on the same infrastructure associated with 1,700+ products reaching page one. Median time: 48 days. Past performance does not predict future results.
14
14
 
15
15
  <p align="center">
16
- <img src="assets/demo.gif" alt="listingbureau-mcp demo" width="800" />
16
+ <img src="https://raw.githubusercontent.com/listingbureau/listingbureau-mcp/main/assets/demo.gif" alt="listingbureau-mcp demo" width="800" />
17
17
  </p>
18
18
 
19
19
  <div align="center">
@@ -166,6 +166,14 @@ Create an account at [listingbureau.com](https://listingbureau.com/mcp?utm_sourc
166
166
  |------|-------------|
167
167
  | `lb_feedback_submit` | Submit feedback, feature requests, or suggestions (10-5000 characters) |
168
168
 
169
+ ## 🧠 Campaign methodology skill
170
+
171
+ The MCP server ships with a companion skill at [`skills/amazon-product-ranking/`](skills/amazon-product-ranking/) that provides a guided 9-phase campaign workflow. The skill teaches the AI how to use the tools effectively: product assessment, competition analysis, funnel profile selection, ramp schedules, cost/ROI projections, execution, and monitoring.
172
+
173
+ **Claude Code:** Copy or symlink the `skills/amazon-product-ranking/` folder into your `.claude/skills/` directory.
174
+
175
+ **Other platforms:** The server instructions reference the skill automatically. The AI can read the methodology from the GitHub link included in the instructions.
176
+
169
177
  ## 🛠️ Development
170
178
 
171
179
  ```bash
@@ -178,7 +186,7 @@ npm test
178
186
  ## 🔗 Links
179
187
 
180
188
  - [Landing page](https://listingbureau.com/mcp?utm_source=github&utm_medium=readme&utm_campaign=mcp-links)
181
- - [Create an account](https://listingbureau.com/mcp?utm_source=github&utm_medium=readme&utm_campaign=mcp-links-signup)
189
+ - [Create an account](https://listingbureau.com/auth/signup?utm_source=github&utm_medium=readme&utm_campaign=mcp-links-signup)
182
190
 
183
191
  ## 📄 License
184
192
 
package/dist/index.js CHANGED
@@ -48,6 +48,12 @@ const server = new McpServer({
48
48
  "When the user asks about something outside current capabilities (other marketplaces, unsupported features), offer to submit their input as feedback via lb_feedback_submit.",
49
49
  "",
50
50
  "SFB units are real Amazon purchases of the user's product. The retail price in the SFB cost is not a net expense — the seller receives it back as normal Amazon sale proceeds. The actual out-of-pocket cost per SFB is the service fee plus the 11% tax/transfer overhead on the retail price.",
51
+ "",
52
+ "CAMPAIGN METHODOLOGY:",
53
+ "For guided campaign workflows (product assessment, competition analysis, strategy recommendation, cost/ROI, execution, monitoring), use the amazon-product-ranking skill.",
54
+ "Skill: https://github.com/listingbureau/listingbureau-mcp/tree/main/skills/amazon-product-ranking",
55
+ "The skill covers: entry point detection (full flow / quick-start / cost-only), funnel profile selection, ramp schedules, campaign types (new launch / re-ranking / keyword expansion), and troubleshooting.",
56
+ "Without the skill, use the funnel ratios above and the lb_* tools directly.",
51
57
  ].join("\n"),
52
58
  });
53
59
  registerAccountTools(server, client);
@@ -75,7 +75,7 @@ export function registerProjectsTools(server, client) {
75
75
  try {
76
76
  const body = {};
77
77
  if (params.active !== undefined)
78
- body.active = params.active;
78
+ body.action = params.active ? "activate" : "pause";
79
79
  if (Object.keys(body).length === 0) {
80
80
  return formatErrorResult(new Error("At least one field (active) must be provided"));
81
81
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "listingbureau-mcp",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "description": "Amazon organic ranking MCP server. Run ranking campaigns, track keyword positions, and monitor rank movement from any AI assistant.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",