listingbureau-mcp 0.1.11 → 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/dist/index.js +1 -5
- package/package.json +1 -1
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,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "listingbureau-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"mcpName": "io.github.listingbureau/listingbureau-mcp",
|
|
5
5
|
"description": "Amazon organic ranking MCP server. Run ranking campaigns, track keyword positions, and monitor rank movement from any AI assistant.",
|
|
6
6
|
"type": "module",
|