listingbureau-mcp 0.1.10 → 0.1.12
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 +38 -6
- package/dist/index.js +1 -5
- package/package.json +2 -1
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
|
-
|
|
77
|
+
/plugin install listingbureau@claude-plugins-official
|
|
76
78
|
```
|
|
77
79
|
|
|
78
|
-
|
|
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
|
-
|
|
93
|
+
[](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:**
|
|
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
|
|
package/dist/index.js
CHANGED
|
@@ -14,11 +14,7 @@ import { checkForUpdate } from "./utils/update-check.js";
|
|
|
14
14
|
import { createRequire } from "node:module";
|
|
15
15
|
const require = createRequire(import.meta.url);
|
|
16
16
|
const pkg = require("../package.json");
|
|
17
|
-
const apiKey = process.env.LB_API_KEY;
|
|
18
|
-
if (!apiKey) {
|
|
19
|
-
console.error("LB_API_KEY environment variable is required");
|
|
20
|
-
process.exit(1);
|
|
21
|
-
}
|
|
17
|
+
const apiKey = process.env.LB_API_KEY ?? "";
|
|
22
18
|
let baseUrl = "https://listingbureau.com";
|
|
23
19
|
if (process.env.LB_BASE_URL) {
|
|
24
20
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "listingbureau-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
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",
|