listingbureau-mcp 0.1.9 → 0.1.11

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
@@ -58,7 +58,7 @@ Add to `claude_desktop_config.json`:
58
58
  "mcpServers": {
59
59
  "listingbureau": {
60
60
  "command": "npx",
61
- "args": ["listingbureau-mcp"],
61
+ "args": ["-y", "listingbureau-mcp"],
62
62
  "env": {
63
63
  "LB_API_KEY": "your-api-key-here"
64
64
  }
@@ -71,22 +71,40 @@ Add to `claude_desktop_config.json`:
71
71
 
72
72
  ### Claude Code
73
73
 
74
+ Install the plugin from the marketplace:
75
+
74
76
  ```bash
75
- claude mcp add listingbureau -- npx listingbureau-mcp
77
+ /plugin install listingbureau@claude-plugins-official
76
78
  ```
77
79
 
78
- Then set your API key in the MCP config.
80
+ This installs the MCP server + the campaign methodology skill. Set `LB_API_KEY` in the shell environment before starting Claude Code.
81
+
82
+ <details>
83
+ <summary>Manual setup (alternative)</summary>
84
+
85
+ ```bash
86
+ claude mcp add listingbureau -e LB_API_KEY=your-api-key -- npx -y listingbureau-mcp
87
+ ```
88
+
89
+ </details>
79
90
 
80
91
  ### Cursor
81
92
 
82
- Add to `.cursor/mcp.json`:
93
+ [![Install in Cursor](https://img.shields.io/badge/Install_in-Cursor-blue?style=for-the-badge&logo=cursor&logoColor=white)](cursor://anysphere.cursor-deeplink/mcp/install?name=ListingBureau&config=eyJtY3BTZXJ2ZXJzIjp7Imxpc3RpbmdidXJlYXUiOnsiY29tbWFuZCI6Im5weCIsImFyZ3MiOlsiLXkiLCJsaXN0aW5nYnVyZWF1LW1jcCJdLCJlbnYiOnsiTEJfQVBJX0tFWSI6InlvdXItYXBpLWtleS1oZXJlIn19fX0=)
94
+
95
+ After clicking, replace `your-api-key-here` with the actual API key in the dialog before confirming.
96
+
97
+ <details>
98
+ <summary>Manual config (alternative)</summary>
99
+
100
+ Add to `.cursor/mcp.json` (project-scoped) or `~/.cursor/mcp.json` (global):
83
101
 
84
102
  ```json
85
103
  {
86
104
  "mcpServers": {
87
105
  "listingbureau": {
88
106
  "command": "npx",
89
- "args": ["listingbureau-mcp"],
107
+ "args": ["-y", "listingbureau-mcp"],
90
108
  "env": {
91
109
  "LB_API_KEY": "your-api-key-here"
92
110
  }
@@ -95,6 +113,18 @@ Add to `.cursor/mcp.json`:
95
113
  }
96
114
  ```
97
115
 
116
+ </details>
117
+
118
+ ### Any MCP client
119
+
120
+ Run the server via npx and configure your client to connect over stdio:
121
+
122
+ ```bash
123
+ npx -y listingbureau-mcp
124
+ ```
125
+
126
+ Set `LB_API_KEY` as an environment variable. See the [MCP specification](https://modelcontextprotocol.io) for client-specific config.
127
+
98
128
  ### 🔑 Get an API key
99
129
 
100
130
  Create an account at [listingbureau.com](https://listingbureau.com/mcp?utm_source=github&utm_medium=readme&utm_campaign=mcp-signup). Your API key is in the dashboard under Settings.
@@ -170,7 +200,9 @@ Create an account at [listingbureau.com](https://listingbureau.com/mcp?utm_sourc
170
200
 
171
201
  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
202
 
173
- **Claude Code:** Copy or symlink the `skills/amazon-product-ranking/` folder into your `.claude/skills/` directory.
203
+ **Claude Code (plugin):** The Claude Code plugin includes the skill automatically. Install via `/plugin install listingbureau@claude-plugins-official`.
204
+
205
+ **Claude Code (manual):** Copy or symlink the `skills/amazon-product-ranking/` folder into your `.claude/skills/` directory.
174
206
 
175
207
  **Other platforms:** The server instructions reference the skill automatically. The AI can read the methodology from the GitHub link included in the instructions.
176
208
 
@@ -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,7 @@
1
1
  {
2
2
  "name": "listingbureau-mcp",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
+ "mcpName": "io.github.listingbureau/listingbureau-mcp",
4
5
  "description": "Amazon organic ranking MCP server. Run ranking campaigns, track keyword positions, and monitor rank movement from any AI assistant.",
5
6
  "type": "module",
6
7
  "main": "dist/index.js",