listbee-dev/listbee-mcp
MCP server for ListBee — commerce API for AI agents
Platform-specific configuration:
{
"mcpServers": {
"listbee-mcp": {
"command": "npx",
"args": [
"-y",
"listbee-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
[](https://insiders.vscode.dev/redirect/mcp/install?name=listbee&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22listbee-mcp%22%5D%2C%22env%22%3A%7B%22LISTBEE_API_KEY%22%3A%22%24%7Binput%3AapiKey%7D%22%7D%7D)
MCP server for ListBee — commerce API for AI agents.
---
Remote (zero install): https://mcp.listbee.so — for ChatGPT Apps, Claude API Connector, remote agents. Each request needs Authorization: Bearer lb_... header.
Local (stdio): npx -y listbee-mcp — for Claude Desktop, Cursor, VS Code, Cline.
---
Four calls to go from zero to a live, selling product page:
create_listing → set_deliverables → get_listing → publish_listing
name, price file/url/text check status go live1. Create
{ "name": "50 Cold Outreach Templates", "price": 1900 }2. Set deliverables — attach what buyers receive after payment
{ "deliverables": [{ "type": "url", "value": "https://...", "label": "Download" }] }3. Inspect readiness — get_listing tells you what's missing and how to fix it
4. Publish — publish_listing makes the product page live
---
Requires Node.js 20+.
~/.claude/claude_desktop_config.json
{
"mcpServers": {
"listbee": {
"command": "npx",
"args": ["-y", "listbee-mcp", "--api-key", "lb_..."]
}
}
}Or with an env var:
{
"mcpServers": {
"listbee": {
"command": "npx",
"args": ["-y", "listbee-mcp"],
"env": {
"LISTBEE_API_KEY": "lb_..."
}
}
}
}.cursor/mcp.json
{
"mcpServers": {
"listbee": {
"command": "npx",
"args": ["-y", "listbee-mcp", "--api-key", "lb_..."]
}
}
}claude mcp add listLoading reviews...