npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

listingbureau-mcp

v0.1.13

Published

Amazon organic ranking MCP server. Run ranking campaigns, track keyword positions, and monitor rank movement from any AI assistant.

Readme

listingbureau-mcp

Organic ranking campaigns for Amazon products, managed through your AI assistant.

The only ranking-focused Amazon MCP server. Create ranking campaigns, set campaign schedules, track keyword positions, and monitor rank movement from Claude, Cursor, or any MCP-compatible client.

Built on the same infrastructure associated with 1,700+ products reaching page one. Median time: 48 days. Past performance does not predict future results.

🚀 What it does

This MCP server connects your AI assistant to Listing Bureau's Amazon ranking infrastructure. Three signal types drive organic rank improvement:

  • Search-Find-Buy (SFB) signals the A10 algorithm that real shoppers searched for a keyword, found the product, and purchased it
  • Add-to-Cart (ATC) builds conversion intent and purchase intent signals
  • Page Views (PGV) generate session-level browsing behavior that supports organic discovery

Your assistant handles the entire workflow: create a project for any ASIN and keyword, set a daily campaign schedule, estimate costs before committing, and pull position reports to track movement.

📦 Quick start

Claude Desktop (one-click)

Download the Desktop Extension and double-click to install. Claude Desktop will prompt for your API key.

Download listingbureau-mcp.mcpb (requires Claude Desktop 4.0+)

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "listingbureau": {
      "command": "npx",
      "args": ["-y", "listingbureau-mcp"],
      "env": {
        "LB_API_KEY": "your-api-key-here"
      }
    }
  }
}

Claude Code

Install the plugin from the marketplace:

/plugin install listingbureau@claude-plugins-official

This installs the MCP server + the campaign methodology skill. Set LB_API_KEY in the shell environment before starting Claude Code.

claude mcp add listingbureau -e LB_API_KEY=your-api-key -- npx -y listingbureau-mcp

Cursor

Install in Cursor

After clicking, replace your-api-key-here with the actual API key in the dialog before confirming.

Add to .cursor/mcp.json (project-scoped) or ~/.cursor/mcp.json (global):

{
  "mcpServers": {
    "listingbureau": {
      "command": "npx",
      "args": ["-y", "listingbureau-mcp"],
      "env": {
        "LB_API_KEY": "your-api-key-here"
      }
    }
  }
}

Any MCP client

Run the server via npx and configure your client to connect over stdio:

npx -y listingbureau-mcp

Set LB_API_KEY as an environment variable. See the MCP specification for client-specific config.

🔑 Get an API key

Create an account at listingbureau.com. Your API key is in the dashboard under Settings.

⚙️ Environment variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | LB_API_KEY | Yes | - | Listing Bureau API key | | LB_BASE_URL | No | https://listingbureau.com | API base URL (override for staging/dev) |

🔧 Tools

21 tools across 7 categories.

📂 Projects (6 tools)

| Tool | Description | |------|-------------| | lb_projects_list | List projects with optional region/active filters | | lb_projects_create | Create a new Amazon project (ASIN + keyword + region) | | lb_projects_get | Get project details (schedule, services, SERP data) | | lb_projects_update | Update project (pause/resume) | | lb_projects_archive | Archive (soft delete) a project | | lb_projects_get_stats | Get daily stats (SFB, ATC, PGV, SERP, ARA, BR, SQR) |

📅 Schedule (3 tools)

| Tool | Description | |------|-------------| | lb_schedule_get | Get current per-day schedule | | lb_schedule_set | Set full per-day schedule (replaces existing) | | lb_schedule_quick_set | Quick-set uniform daily volumes |

💲 Cost Estimation (1 tool)

| Tool | Description | |------|-------------| | lb_estimate_cost | Estimate campaign cost before committing. Computes total cost, daily averages, and wallet sustainability. |

💰 Wallet (3 tools)

| Tool | Description | |------|-------------| | lb_wallet_get_balance | Get wallet balance (credits and USD) | | lb_wallet_get_transactions | Get transaction history (paginated) | | lb_wallet_topup | Generate a Stripe checkout URL to top up wallet balance |

📦 Orders (3 tools)

| Tool | Description | |------|-------------| | lb_orders_list | List orders (paginated, newest first) | | lb_orders_get | Get order details | | lb_orders_report_issue | Report an issue with an order |

👤 Account (4 tools)

| Tool | Description | |------|-------------| | lb_account_get | Get account info (email, name, account status, wallet balance) | | lb_account_update_profile | Update profile fields (first_name, last_name, company) | | lb_account_get_service_rates | Get current service pricing rates | | lb_account_get_subscription | Get subscription info (plan, fee, discount) |

💬 Feedback (1 tool)

| Tool | Description | |------|-------------| | lb_feedback_submit | Submit feedback, feature requests, or suggestions (10-5000 characters) |

🧠 Campaign methodology skill

The MCP server ships with a companion skill at 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.

Claude Code (plugin): The Claude Code plugin includes the skill automatically. Install via /plugin install listingbureau@claude-plugins-official.

Claude Code (manual): Copy or symlink the skills/amazon-product-ranking/ folder into your .claude/skills/ directory.

Other platforms: The server instructions reference the skill automatically. The AI can read the methodology from the GitHub link included in the instructions.

🛠️ Development

npm install
npm run build
npm run dev    # watch mode
npm test

🔗 Links

📄 License

MIT