Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Mercari Server

FreeNot checked

Automates Mercari resale marketplace operations, enabling AI assistants to search listings, manage selling inventory, view purchase/sales history, and create ne

GitHubEmbed

About

Automates Mercari resale marketplace operations, enabling AI assistants to search listings, manage selling inventory, view purchase/sales history, and create new listings via Playwright and Browserbase.

README

MCP (Model Context Protocol) server for automating Mercari resale marketplace operations using Playwright and Browserbase.

Overview

This server exposes Mercari functionality as MCP tools, enabling AI assistants to search listings, manage your selling inventory, view purchase/sales history, and create new listings.

Requirements

  • Node.js >= 18
  • A Browserbase account with CDP URL
  • Mercari account (for authenticated operations)

Installation

npm install @striderlabs/mcp-mercari

Or from tarball:

npm install ./striderlabs-mcp-mercari-1.0.0.tgz

Configuration

Set the following environment variable:

export BROWSERBASE_CDP_URL="wss://connect.browserbase.com?apiKey=YOUR_KEY&sessionId=YOUR_SESSION"

Usage with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "mercari": {
      "command": "npx",
      "args": ["@striderlabs/mcp-mercari"],
      "env": {
        "BROWSERBASE_CDP_URL": "wss://connect.browserbase.com?apiKey=YOUR_KEY&sessionId=YOUR_SESSION"
      }
    }
  }
}

Tools

search_listings

Search Mercari listings by keyword, category, and price range.

Parameters:

  • keyword (required): Search term
  • category (optional): Category filter (e.g. "Electronics", "Clothing")
  • min_price (optional): Minimum price in USD
  • max_price (optional): Maximum price in USD
  • condition (optional): new | like_new | good | fair | poor
  • limit (optional): Max results (default: 20)

Example:

{
  "keyword": "iPhone 14",
  "max_price": 600,
  "condition": "good",
  "limit": 10
}

get_listing_details

Get detailed information about a specific listing.

Parameters:

  • listing_id (required): Mercari item ID or full URL

Example:

{
  "listing_id": "m12345678"
}

get_my_listings

Get listings you're currently selling (requires authentication).

Parameters:

  • status (optional): on_sale | sold_out | all (default: on_sale)

create_listing

Create a new item listing on Mercari (requires authentication).

Parameters:

  • title (required): Item title
  • description (required): Item description
  • price (required): Price in USD
  • condition (required): new | like_new | good | fair | poor
  • category (optional): Item category
  • shipping_from (optional): State code (e.g. "CA")
  • images (optional): Array of local file paths to item images

Example:

{
  "title": "Nike Air Max 90 Size 10",
  "description": "Worn twice, great condition. No box.",
  "price": 85,
  "condition": "like_new",
  "shipping_from": "CA",
  "images": ["/path/to/shoe-front.jpg", "/path/to/shoe-side.jpg"]
}

get_purchases

View your purchase history (requires authentication).

Parameters:

  • limit (optional): Max items to return (default: 20)

get_sales

View your sales history (requires authentication).

Parameters:

  • limit (optional): Max items to return (default: 20)

Authentication

Authenticated tools (get_my_listings, create_listing, get_purchases, get_sales) require an active Mercari session in the Browserbase browser. To authenticate:

  1. Use Browserbase's live view to navigate to mercari.com and log in manually
  2. The session cookies will persist for subsequent tool calls

How It Works

This server uses Playwright to control a browser via Browserbase's CDP endpoint. Each tool call:

  1. Connects to the remote browser via CDP
  2. Navigates to the relevant Mercari page
  3. Extracts or fills in data using DOM selectors
  4. Returns structured JSON results

License

MIT

from github.com/markswendsen-code/mcp-mercari

Installing Mercari Server

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/markswendsen-code/mcp-mercari

FAQ

Is Mercari Server MCP free?

Yes, Mercari Server MCP is free — one-click install via Unyly at no cost.

Does Mercari Server need an API key?

No, Mercari Server runs without API keys or environment variables.

Is Mercari Server hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Mercari Server in Claude Desktop, Claude Code or Cursor?

Open Mercari Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Playwright

Browser automation, scraping, screenshots

Microsoftby Microsoft

Puppeteer

Browser automation and web scraping.

modelcontextprotocolby modelcontextprotocol

opentabs-dev/opentabs

Plugin-based MCP server + Chrome extension that gives AI agents access to web applications through the user's authenticated browser session. 100+ plugins with a

opentabs-devby opentabs-dev

robhunter/agentdeals

1,500+ developer infrastructure deals, free tiers, and startup programs across 54 categories. Search deals, compare vendors, plan stacks, and track pricing chan

robhunterby robhunter

hlydecker/ucsc-genome-mcp

MCP server to interact with the UCSC Genome Browser API, letting you find genomes, chromosomes, and more.

hlydeckerby hlydecker

34892002/bilibili-mcp-js

A MCP server that supports searching for Bilibili content. Provides LangChain integration examples and test scripts.

34892002by 34892002

achiya-automation/safari-mcp

Native Safari browser automation for AI agents with 80+ tools. No Chrome dependency, optimized for Apple Silicon with 60% less CPU overhead.

achiya-automationby achiya-automation

agent-infra/mcp-server-browser

Browser automation capabilities using Puppeteer, both support local and remote browser connection.

bytedanceby bytedance

aparajithn/agent-scraper-mcp

Web scraping MCP server for AI agents. 6 tools: clean content extraction, structured scraping with CSS selectors, full-page screenshots via Playwright, link ext

aparajithnby aparajithn

apireno/DOMShell

Browse the web using filesystem commands (ls, cd, grep, click). 38 MCP tools map Chrome's Accessibility Tree to a virtual filesystem via a Chrome Extension.

apirenoby apireno

Compare Mercari Server with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All browse MCPs