Listing Bureau MCP Server

Amazon organic ranking MCP server. Run campaigns, track positions, monitor rank movement.

Local serverstdio

What is the Listing Bureau MCP server?

Amazon organic ranking MCP server. Run campaigns, track positions, monitor rank movement. That is what the listing bureau mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

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

The tools it exposes

The server publishes 14 tools. What each one is for:

  • 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)
  • 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
  • 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

What it needs from you

Configuration is passed through the environment: LB_API_KEY, LB_BASE_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

The server ships on npm as listingbureau-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

How it compares

Among the search and retrieval options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Listing Bureau's toolset — lb_projects_list, lb_projects_create, lb_projects_get and 11 more — is a fair guide to whether it matches your workflow. It is maintained by listingbureau; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Listing Bureau's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Listing Bureau.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
lb_projects_listList projects with optional region/active filters
lb_projects_createCreate a new Amazon project (ASIN + keyword + region)
lb_projects_getGet project details (schedule, services, SERP data)
lb_projects_updateUpdate project (pause/resume)
lb_projects_archiveArchive (soft delete) a project
lb_projects_get_statsGet daily stats (SFB, ATC, PGV, SERP, ARA, BR, SQR)
lb_schedule_getGet current per-day schedule
lb_schedule_setSet full per-day schedule (replaces existing)
lb_schedule_quick_setQuick-set uniform daily volumes
lb_wallet_get_balanceGet wallet balance (credits and USD)
lb_wallet_get_transactionsGet transaction history (paginated)
lb_wallet_topupGenerate a Stripe checkout URL to top up wallet balance
lb_orders_listList orders (paginated, newest first)
lb_orders_getGet order details

How to install the Listing Bureau MCP server

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

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
LB_API_KEYCredential the server authenticates with.Yes
LB_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Listing Bureau to lb projects list.
  • Use Listing Bureau to lb projects create.
  • Use Listing Bureau to lb projects get.

Frequently asked questions

It connects Listing Bureau to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (lb_projects_list, lb_projects_create, lb_projects_get, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Listing Bureau directly.