🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

clearlist

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clearlist

ClearList CLI and MCP server. An AI resale manager that turns photos into listings, publishes a shareable sale page, and lets buyers reserve items and book their own pickup slots.

latest
Source
npmnpm
Version
0.9.1
Version published
Maintainers
1
Created
Source

ClearList

smithery badge

ClearList is an AI resale manager. Photograph what you are selling and it writes the listing, prices it, and publishes one shareable page. Buyers reserve items, queue up behind each other, and book their own pickup slots, so nobody has to ask "is this still available?" or negotiate a Saturday over text.

This package ships two things:

  • clearlist, a command line tool for scripting seller actions against the REST API.
  • clearlist-mcp-server, a Model Context Protocol server so Claude, ChatGPT, Gemini, or any MCP client can run a sale end to end.

This is the unscoped alias of @clearlist/mcp-server. Both packages are published from the same source at the same version. Install whichever name you prefer.

Install

npm install -g clearlist

Or run it without installing:

npx clearlist login you@example.com

CLI

Authentication is passwordless. You get a six digit code by email, and the CLI stores the resulting API key in ~/.clearlist/config.json. Every command prints JSON, so output pipes cleanly into scripts.

clearlist login you@example.com          # send a sign-in code
clearlist verify you@example.com 123456  # exchange the code for an API key
clearlist items                          # list your listings
clearlist publish --city "Austin"        # publish the sale page, get the URL
clearlist reservations                   # who reserved what
clearlist reply <conversationId> "Yes, still available"
clearlist picked-up <itemId>             # mark an item sold
clearlist status                         # plan, capacity, expiry

MCP server

Remote endpoint (no install)

Most hosts can connect straight to the hosted endpoint. Sign-in happens in your browser.

https://clearlist.me/api/mcp

In Claude, go to Settings, then Connectors, then add a custom connector with that URL. This works on the free plan.

ChatGPT cannot do this on a personal account. As of August 2026 custom connectors are a Business and Enterprise/Edu feature that a workspace admin enables, on the web only, so Plus and Pro have no way to add one. Consumer access is coming via the ChatGPT Plugin Directory, where our listing is in progress. Until then, use the local stdio path below, which works with Codex and any other MCP client that runs a local server.

Local stdio

{
  "mcpServers": {
    "clearlist": {
      "command": "npx",
      "args": ["-y", "clearlist-mcp-server"],
      "env": {
        "CLEARLIST_API_KEY": "cl_your_key_or_omit_for_onboarding"
      }
    }
  }
}

CLEARLIST_API_KEY is optional. Without it, an agent can create the account and obtain a key at runtime through the email verification tools, which means someone can run an entire sale without ever opening clearlist.me.

Tools

20 usable tools covering listing creation (single and bulk), page publishing, reservations, buyer messaging, pickup scheduling, cross posting, and payment links. Three discovery tools are registered as stubs pending a future release.

The MCP server is a thin protocol adapter over the same REST routes the web UI calls, with one deliberate exception. It cannot share your pickup address, and there is no flag that makes it possible. Disclosing where you live is a physical-safety decision, so it stays an action only you can take, from your own inbox, behind a confirmation dialog.

Documentation

License

MIT

Keywords

clearlist

FAQs

Package last updated on 08 Aug 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts