Secondhand MCP
This server enables AI assistants to search secondhand items across Facebook Marketplace, eBay, Depop, and Poshmark—individually or all at once. You can filter results by price range, condition, category, brand, department, size, color, sort order, and location (Facebook), with optional inclusion of sold items (Facebook) and image URLs. Full listing details provide description, all photos, seller info, and shipping options. It lists enabled marketplaces, supports pagination (eBay), and works with MCP clients (Claude Desktop, Cursor). Configuration options include eBay API keys and Chrome for Depop/Poshmark scraping.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Secondhand MCPsearch Facebook Marketplace for a used sofa under $300"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Secondhand MCP
A Model Context Protocol (MCP) server that lets AI assistants search secondhand marketplaces. Search Facebook Marketplace, eBay, Depop, and Poshmark for used and secondhand items — filter by price, category, condition, size, and color, then get full listing details with photos, descriptions, and seller info.
Works with Claude Desktop, Claude Code, Cursor, and other clients that run MCP servers locally.
Using ChatGPT? This one won't work there.
It runs on your computer, so it only works where your computer is — Claude Desktop, Claude Code, Cursor. Secondhand MCP Cloud is the same search, always on, so whichever assistant you actually use can reach it. Free tier, no card.
This repo | ||
Claude Desktop, Code, Cursor | ✅ | ✅ |
ChatGPT, Claude, and other assistants | — | ✅ |
Searching from your phone | — | ✅ |
Chrome running in the background | needed | not needed |
Price | free, forever | free tier, then $4.99 |
Supported Marketplaces
Marketplace | Auth Required | Notes |
Facebook Marketplace | No | Location-based search |
eBay | Yes (API keys) | Official Browse API |
Depop | No | Requires Chrome installed |
Poshmark | No | Requires Chrome installed |
Related MCP server: Marketplace Finder MCP Server
Setup
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"secondhand": {
"command": "npx",
"args": ["-y", "secondhand-mcp"],
"env": {
"EBAY_CLIENT_ID": "your-ebay-client-id",
"EBAY_CLIENT_SECRET": "your-ebay-client-secret",
"EBAY_MARKETPLACE_ID": "EBAY_US"
}
}
}
}Claude Code
Add to ~/.claude/.mcp.json:
{
"mcpServers": {
"secondhand": {
"command": "npx",
"args": ["-y", "secondhand-mcp"],
"env": {
"EBAY_CLIENT_ID": "your-ebay-client-id",
"EBAY_CLIENT_SECRET": "your-ebay-client-secret",
"EBAY_MARKETPLACE_ID": "EBAY_US"
}
}
}
}eBay, Depop, and Poshmark are all optional — if eBay API keys are missing or Chrome isn't installed, those marketplaces are automatically disabled and the rest still work.
Depop & Poshmark / Chrome Requirement
Depop and Poshmark require a headless browser. If Google Chrome or Chromium is installed on your system, both are automatically enabled — no config needed. If Chrome isn't found, they are silently skipped.
On macOS, the first time you search Depop or Poshmark, you may see a system prompt asking to allow Node.js to control Chrome. This is expected — puppeteer needs to launch Chrome in headless mode. Allow it once and it won't ask again.
The browser runs invisibly in the background and only launches when you actually search Depop or Poshmark.
Configuration
Choosing Marketplaces
By default all marketplaces are enabled. To limit which are active, set the MARKETPLACES env var (comma-separated):
{
"env": {
"MARKETPLACES": "facebook,ebay"
}
}Valid values: facebook, ebay, depop, poshmark
eBay API Keys
eBay uses the official Browse API. You need a free eBay developer account:
Create an account at developer.ebay.com
Create an application to get a Client ID and Client Secret
Add them to your MCP config as
EBAY_CLIENT_IDandEBAY_CLIENT_SECRET
eBay Marketplace / Region
By default the server targets the US eBay site. To search a different regional marketplace, set the EBAY_MARKETPLACE_ID environment variable:
{
"env": {
"EBAY_MARKETPLACE_ID": "EBAY_DE"
}
}Common values:
Value | Site |
| ebay.com (default) |
| ebay.de |
| ebay.co.uk |
| ebay.com.au |
| ebay.fr |
| ebay.it |
| ebay.es |
| ebay.ca |
The full list is available in the eBay API docs.
Tools
search_marketplace
Search for items across marketplaces.
Parameter | Required | Default | Description |
| Yes | Search terms | |
| No |
|
|
| No |
| City to search in (Facebook only) |
| No |
| Search radius in miles, up to 500 (Facebook only) |
| No | Maximum price | |
| No | Minimum price | |
| No |
| Max results |
| No |
| Include sold items (Facebook only) |
| No |
| Include image URLs in output |
| No |
| Sort order (Depop, Poshmark): |
| No | Item condition. eBay: | |
| No | Product category. Depop: | |
| No | Brand filter (Poshmark only): e.g. | |
| No | Department filter (Poshmark only): | |
| No | Size filter (Depop, Poshmark): e.g. | |
| No | Color filter (Depop, Poshmark): |
Data returned per marketplace:
Field | eBay | Depop | Poshmark | |
Title | Yes | Yes | Yes | Yes |
Price | Yes | Yes | Yes | Yes |
Location | City | City, State | — | — |
Condition | — | Yes | — | — |
Photo count | 1 thumbnail | 1 thumbnail | 1 thumbnail | 1 thumbnail |
Seller | Yes | Yes | — | — |
get_listing_details
Get full details for a specific listing using an ID from search results.
Parameter | Required | Default | Description |
| Yes | Listing ID from search results | |
| No |
|
|
Data returned per marketplace:
Field | eBay | Depop | Poshmark | |
Description | Yes | Yes | Yes | Yes |
All photos | Yes | Yes | Yes | Yes |
Location | City | City, State, Country | — | — |
Seller | Name | Username | Username | Username |
Delivery types | Yes | — | — | — |
Shipping | Yes/No | Service codes | Yes/No | Always included |
list_marketplaces
List all enabled marketplaces and their status.
search / fetch (deep research)
Convenience pair following the ChatGPT Deep Research tool contract — exact names, a single string argument each:
search(query)— searches every enabled marketplace at once and returns{ results: [{ id, title, text, url }] }, whereidismarketplace:listingIdfetch(id)— returns full listing details for asearchresult ID as{ id, title, text, url, metadata }
Useful for research-style clients that expect these standard tool names; for filtered searches use search_marketplace.
How It Works
Facebook Marketplace — Searches listings by location, radius, price, and query. Resolves city names to coordinates. No login or browser needed. Facebook serves non-browser callers a gated version of its search API from time to time (a single result with more pages behind it, or stubs with no listing inside); when that happens the server reads the logged-out search page instead, which still carries a full first page of results.
eBay — Uses the official eBay Browse API with OAuth 2.0 client credentials. Tokens are cached and auto-refreshed. The target regional marketplace is controlled by EBAY_MARKETPLACE_ID (default: EBAY_US).
Depop — Uses a headless browser to search listings with support for category, condition, size, and color filters. The browser instance is shared across requests.
Poshmark — Uses a headless browser to search listings with support for condition, size, color, sort, and price filters. Poshmark is not location-based — all items ship nationally.
Development
git clone https://github.com/jlsookiki/secondhand-mcp.git
cd secondhand-mcp
npm install
npm run buildAdding a Marketplace
Create a new file in
src/marketplaces/Extend
BaseMarketplaceand implementsearch()and optionallygetListingDetails()Add the constructor to
allMarketplacesinsrc/marketplaces/index.ts
Limitations
Facebook: May break if Facebook changes their frontend
eBay: Requires developer API keys (free tier available)
Depop: Requires Chrome/Chromium installed; slower than Facebook/eBay (~5s per search)
Poshmark: Requires Chrome/Chromium installed; no official API so relies on page scraping
Rate limiting: Don't make too many requests too quickly
License
MIT
Available Tools
5 toolsfetchARead-onlyIdempotent
Fetch one listing in full for an id returned by the search tool, following the ChatGPT deep research tool contract. Id format: marketplace:listingId (for example "facebook:12345" or "ebay:v1|123|456"). Behavior: read-only. Errors: an id without the marketplace prefix, or for a removed listing, returns an error message. Not for: ids from search_marketplace, which take get_listing_details.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Result ID from the search tool (format: marketplace:listingId) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior. The description adds value beyond those by specifying error behavior for malformed ids and removed listings. The only minor redundancy is restating 'read-only' when annotations already provide it.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact, front-loaded with the core purpose, then delivers id format, behavior, errors, and exclusions in a logical order. Every sentence earns its place and none are wasted.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter tool with no output schema, the description is complete: it specifies the id format with examples, explains error cases, declares read-only behavior, and routes the agent away from the wrong sibling tool. Nothing essential is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds further value by providing concrete id format examples ('facebook:12345' or 'ebay:v1|123|456') and by clarifying that ids from search_marketplace are not valid here. This goes beyond the schema's brief description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource ('Fetch one listing in full') and immediately ties it to ids returned by the search tool. It also distinguishes itself from get_listing_details by explicitly saying what it is not for, so an agent can pick the correct tool without ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly states when to use the tool: for ids returned by the search tool. It also gives an explicit exclusion and alternative: ids from search_marketplace should use get_listing_details instead. This is direct, actionable routing guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_listing_detailsARead-onlyIdempotent
Get one listing in full using an id from search_marketplace or from a marketplace URL: description, every photo, location, seller and shipping options. Photos: by default (imageMode:"urls") you get direct full-resolution CDN image URLs to fetch yourself, which is the most reliable option because some CDNs block server-side fetches. Set imageMode:"inline" (or includeImages:true) to have the server fetch the photos and return them as base64 image blocks; if that fetch is blocked the server falls back to URLs. Use imageSize to trade resolution for payload and maxImages to cap the count. Requirements: the same as search_marketplace for that marketplace. Behavior: read-only, one listing per call, no login. Errors: a listing that has been removed, or an id from the wrong marketplace, returns an error message rather than a partial listing. Not for: searching (use search_marketplace) or fetching many listings at once.
| Name | Required | Description | Default |
|---|---|---|---|
| imageMode | No | How photos are returned. "urls" (default): direct full-resolution CDN image URLs for you to fetch yourself — most reliable, bypasses CDN blocking of server-side fetches, defaults to full resolution. "inline": server fetches every photo and returns them as base64 image blocks in this one call; if the server fetch is blocked it automatically falls back to returning the URLs. | urls |
| imageSize | No | Resolution for eBay images: thumb (~400px), standard (~800px), full (~1600px). Defaults to full for imageMode "urls" and standard for "inline". Non-eBay images are returned as-is. | |
| listingId | Yes | The listing ID (from search results or a marketplace URL) | |
| maxImages | No | Cap the number of photos returned (default: all). Use to keep the response small for listings with many photos. | |
| marketplace | No | Which marketplace the listing is from (default: facebook) | |
| includeImages | No | Deprecated alias for imageMode:"inline". If true and imageMode is unset, photos are fetched server-side and returned inline as base64. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior. The description adds valuable behavioral context beyond those: one listing per call, no login required, photo fetch/fallback behavior, and concrete error behavior for removed listings or wrong-marketplace IDs. This exceeds what annotations alone provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but well organized: the core purpose is front-loaded, the photo-mode behavior is explained in compact conditional terms, and the constraints/errors/not-for guidance are each one clear sentence. No sentence is wasted.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having no output schema, the description tells the agent what fields will appear, how photos behave in both modes, how to cap payload, what requirements apply, what errors look like, and what the tool is not for. This is complete enough for correct invocation and expectation-setting.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is already 100%, and the description additionally explains the semantic difference between imageMode values, the automatic fallback from inline to URLs, the resolution tradeoff of imageSize, maxImages as a payload cap, and the includeImages alias. This adds substantial meaning beyond the schema definitions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Get'), a specific resource ('one listing in full'), and the source of the ID ('search_marketplace or a marketplace URL'). It lists the returned content and explicitly distinguishes itself from searching and batch fetching, making it clearly different from its siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit when-to-use guidance: retrieve one full listing by ID. It names alternatives for what it is not for — 'search_marketplace' for searching and no batch operation for many listings — and even notes the same requirements as search_marketplace apply.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_marketplacesARead-onlyIdempotent
List the marketplaces this server can search right now, with each one's display name, whether it needs credentials, and whether it is currently reachable. Call it once when a search fails with an unknown-marketplace error or before offering a marketplace the user did not name. Behavior: read-only, no arguments, no network calls beyond a health check. Not for: searching or fetching listings.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior. The description adds useful behavioral context beyond annotations: 'read-only, no arguments, no network calls beyond a health check,' and specifies what information each marketplace entry includes. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is four sentences, each earning its place: purpose, when to call, behavioral characteristics, and exclusions. It is front-loaded with the core listing purpose and avoids irrelevant detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter read-only listing tool with no output schema, the description fully covers what the tool returns, when to call it, its behavioral constraints, and what it is not for. An agent has enough to select and invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and 100% schema coverage, so there is no parameter ambiguity. The description reinforces this by explicitly stating 'no arguments,' which is sufficient for an agent to call the tool correctly.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb and resource: 'List the marketplaces this server can search right now', with concrete output details (display name, credential requirement, reachability). It explicitly differentiates from siblings by stating 'Not for: searching or fetching listings'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit trigger conditions: 'Call it once when a search fails with an unknown-marketplace error or before offering a marketplace the user did not name.' It also names exclusions ('Not for: searching or fetching listings'), making alternative selection clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
searchARead-onlyIdempotent
Search every available secondhand marketplace at once with a single query string, following the ChatGPT deep research tool contract. Returns results whose ids (marketplace:listingId) can be passed to the fetch tool. Behavior: read-only; Facebook results use the server's default location because this contract carries no location, so prefer search_marketplace when a place matters. Not for: filtered or local searches.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query string |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false. The description adds meaningful context beyond annotations: Facebook results use the server's default location due to the contract carrying no location, and results expose ids compatible with the fetch tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose and is compact overall. Each clause adds useful routing or behavioral context, though the explicit 'Behavior: read-only' phrase is redundant with the readOnlyHint annotation.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given there is no output schema, the description helpfully explains that results contain ids in marketplace:listingId form usable with the fetch tool. It also covers the main location caveat and exclusions, making it reasonably complete for a single-parameter search tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and the only parameter, query, is described as a search query string. The description adds little beyond restating that a single query string is used, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's verb and resource: search every available secondhand marketplace with a single query string. It also distinguishes itself from siblings by noting that search_marketplace is preferred when a location matters and that this tool is not for filtered or local searches.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly provides when-to-use and when-not-to-use guidance: it says to prefer search_marketplace when a place matters and states that this tool is not for filtered or local searches. It also explains the downstream use case of passing returned ids to the fetch tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_marketplaceARead-onlyIdempotent
Search live listings on secondhand marketplaces by keyword. Marketplaces: . Returns up to limit listings with id, title, price, location, seller and a thumbnail; call get_listing_details with an id for the description, every photo and shipping. Requirements: Facebook Marketplace needs no credentials but is local, so pass location as "City, ST"; eBay needs EBAY_CLIENT_ID and EBAY_CLIENT_SECRET in the server environment; Depop and Poshmark need Chrome or Chromium on the machine. Behavior: read-only, no login, no purchases. Facebook may rate-limit repeated searches from one IP, and results for a query are cached for 90 seconds. Errors: a marketplace that fails returns success:false with the reason instead of throwing; an unknown marketplace name lists the valid ones; an empty result usually means the query was too specific, so widen the keywords or drop a price bound before concluding nothing exists. Not for: buying, messaging sellers, saved searches, or new-retail catalogs.
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Sort order (Depop, Poshmark). Options: relevance, newest, most_popular, price_low_to_high, price_high_to_low | relevance |
| brand | No | Filter by brand (Poshmark only). e.g. "Nike", "Levi's", "Gucci" | |
| limit | No | Maximum number of results to return (default: 20). eBay paginates automatically to fetch more than 200 (eBay caps offset + limit at 10,000). | |
| query | Yes | Search query (e.g., "stroller", "iPhone 14", "vintage couch") | |
| sizes | No | Filter by sizes (Depop, Poshmark). Example: ["S", "M", "L"] or ["US 9", "US 10"] | |
| colors | No | Filter by colors (Depop, Poshmark). Options: black, white, red, blue, green, yellow, orange, pink, purple, brown, grey, cream, multi, silver, gold | |
| offset | No | Starting result offset for pagination (default: 0). eBay only; other marketplaces ignore it. | |
| category | No | Product category. Depop: tops, bottoms, dresses, coats-jackets, footwear, accessories, bags, jewellery, activewear, swimwear. Poshmark: use underscore-separated names like Jackets_&_Coats, Dresses, Shoes, Accessories, etc. | |
| location | No | City and state for Facebook Marketplace searches, as "City, ST" — e.g. "Austin, TX", "Portland, OR". Resolve neighborhoods, ZIP codes, metro areas and "near me" to a city and state before calling; a bare city name is ambiguous and may return the wrong state. Non-US: pass city and country. Facebook only — other marketplaces ignore it. | san francisco |
| maxPrice | No | Maximum price filter (optional) | |
| minPrice | No | Minimum price filter (optional) | |
| showSold | No | Include sold/unavailable items in results (default: false) | |
| condition | No | Item condition filter. eBay: new, like_new, good, fair. Depop: new, like_new, excellent, good, fair, used. Poshmark: new (NWT), like_new (NWOT), good, fair. Use "any" for no filter. | |
| department | No | Filter by department (Poshmark only). Options: Women, Men, Kids | |
| marketplace | No | Marketplace to search. Options: , or "all" to search all marketplaces | |
| radiusMiles | No | How far around the location to search, in miles (default 25, max 500). Facebook only. Widen it for a metro area or a rural town. | |
| includeImages | No | Include full image URLs in results (default: false). Use get_listing_details for full photos. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark this as read-only and idempotent, and the description reinforces and extends that with concrete behavioral details: no login, no purchases, Facebook rate-limiting, 90-second caching, marketplace-specific credentials, and a defined error pattern. This goes well beyond what annotations alone convey.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but well-ordered: purpose, marketplace requirements, behavior, errors, and exclusions. Every sentence carries operational value. One minor blemish is the incomplete "Marketplaces: ." fragment, which appears to be a formatting/placeholder artifact and adds no information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 17-parameter, multi-marketplace tool with no output schema, the description is remarkably complete. It specifies the return fields, marketplace-specific prerequisites, credential requirements, caching and rate-limit behavior, error handling, and clear exclusions. An agent has enough context to invoke the tool correctly and recover from common failures.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds useful cross-parameter context beyond the schema, such as Facebook requiring "City, ST" location, eBay pagination behavior, price-bound tuning for empty results, and the distinction between thumbnails and full photos via get_listing_details. Some duplication exists, but the added meaning justifies a 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb and resource: "Search live listings on secondhand marketplaces by keyword." It clearly distinguishes itself from get_listing_details by stating that details, photos, and shipping require a separate call, and it explicitly lists what it is not for.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit when-to-use and when-not-to-use guidance: it directs the agent to get_listing_details for richer item data, and it lists exclusions such as buying, messaging sellers, saved searches, and new-retail catalogs. It also provides practical guidance like widening keywords or dropping price bounds when results are empty.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
4 tool updates
v0.7.1- Added
fetch - Changed
get_listing_details4 fields changed- added
Input schema / properties / imageModeAdded value: +{ + "default": "urls", + "description": "How photos are returned. \"urls\" (default): direct full-resolution CDN image URLs for you to fetch yourself — most reliable, bypasses CDN blocking of server-side fetches, defaults to full resolution. \"inline\": server fetches every photo and returns them as base64 image blocks in this one call; if the server fetch is blocked it automatically falls back to returning the URLs.", + "enum": [ + "urls", + "inline" + ], + "type": "string" +} - added
Input schema / properties / imageSizeAdded value: +{ + "description": "Resolution for eBay images: thumb (~400px), standard (~800px), full (~1600px). Defaults to full for imageMode \"urls\" and standard for \"inline\". Non-eBay images are returned as-is.", + "enum": [ + "thumb", + "standard", + "full" + ], + "type": "string" +} - changed
Input schema / properties / includeImages / descriptionPrevious value: -"Return actual image content instead of URLs. Images are returned as base64-encoded content blocks that the model can see."New value: +"Deprecated alias for imageMode:\"inline\". If true and imageMode is unset, photos are fetched server-side and returned inline as base64." - added
Input schema / properties / maxImagesAdded value: +{ + "description": "Cap the number of photos returned (default: all). Use to keep the response small for listings with many photos.", + "type": "number" +}
- Added
search - Changed
search_marketplace2 fields changed- changed
Input schema / properties / location / descriptionPrevious value: -"City or area to search (e.g., \"san francisco\", \"nyc\", \"los angeles\")"New value: +"City and state for Facebook Marketplace searches, as \"City, ST\" — e.g. \"Austin, TX\", \"Portland, OR\". Resolve neighborhoods, ZIP codes, metro areas and \"near me\" to a city and state before calling; a bare city name is ambiguous and may return the wrong state. Non-US: pass city and country. Facebook only — other marketplaces ignore it." - added
Input schema / properties / radiusMilesAdded value: +{ + "default": 25, + "description": "How far around the location to search, in miles (default 25, max 500). Facebook only. Widen it for a metro area or a rural town.", + "type": "number" +}
3 tool updates
v0.4.0- First observed
get_listing_details - First observed
list_marketplaces - First observed
search_marketplace
TDQS
Scored across 5 tools
The tool set has two overlapping pairs: search_marketplace/search and get_listing_details/fetch. The descriptions help clarify that one pair is marketplace-specific and the other follows the deep research contract, but an agent can still easily pick the wrong tool when the only distinguishing factor is the id format or contract convention.
Three tools follow a verb_noun pattern (search_marketplace, get_listing_details, list_marketplaces), while two bare generic verbs (search, fetch) break the pattern. This is inconsistent and makes the duplicated functionality harder to tell apart by name alone.
Five tools is a reasonable size for a read-only marketplace search server. However, the two contract-wrapper tools (search and fetch) duplicate the core capabilities of the marketplace-specific tools, making the set feel slightly padded even though it remains manageable.
The core read-only workflow is covered: searching listings, fetching full details, and discovering available marketplaces. Minor gaps exist, such as no pagination for searches and no seller-profile or category-browsing endpoint, but agents can generally accomplish the intended search-and-inspect task without dead ends.
Maintenance
Related MCP Connectors
AI marketplace: search, buy, sell across Amazon, eBay, AliExpress. 13 tools.
Search products in nearby stores. Agents can also list items for sale on a user's behalf.
AI-powered product search, affiliate links, and price negotiation for e-commerce platforms
AI resale manager. Photograph an item, AI writes the listing, publish a sale page, manage pickups.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to search, compare, buy, and sell products across multiple e-commerce platforms through 13 marketplace tools.1MIT
- FlicenseNot gradedqualityBmaintenanceEnables AI agents like claude.ai to search online marketplaces (e.g., Facebook Marketplace) through your own logged-in browser, returning structured listings and details.-
- AlicenseAqualityAmaintenanceEnables AI agents to search and monitor Dutch and Belgian classifieds (Marktplaats and 2dehands) for listings, seller profiles, and categories.52MIT
- AlicenseAqualityBmaintenanceEnables AI agents to search, inspect, and purchase physical goods on an escrow-secured marketplace, including listing search, agent reputation checks, and offer creation.515MIT