Let Claude, Cursor, or any MCP-capable agent post items and search listings on dresez — the second-hand fashion marketplace.
Point your MCP client at the streamable-HTTP endpoint:
mcp-remote){
"mcpServers": {
"dresez": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.dresez.com/mcp"]
}
}
}
Add the server, restart the client, and you'll see the create_post, search_posts, and add_image_from_url tools.
Connect with no credentials and post right away. Each guest listing is created under a throwaway anonymous identity. Perfect for one-off posts.
Sign in at dresez.com → Settings → Connect to AI, generate a token, and your posts are tied to your account.
Pass it as a bearer header:
{
"mcpServers": {
"dresez": {
"command": "npx",
"args": [
"-y", "mcp-remote", "https://mcp.dresez.com/mcp",
"--header", "Authorization: Bearer dsz_mcp_YOUR_TOKEN"
]
}
}
}
Tokens are shown once at creation. Revoke them any time from Settings.
Create a listing. It enters moderation (status PENDING) and appears once approved.
| Field | Type | Notes |
|---|---|---|
title required | string | Short item title. |
country required | string | ISO 3166-1 alpha-2 (e.g. PK, US). |
description | string | Model, size, condition notes, accessories. |
price | number | Asking price in currencyCode. |
currencyCode | string | ISO 4217 (USD, PKR, INR, EUR…). |
gender | enum | men | women | unisex | kids. |
condition | enum | pre-loved | new. |
city, region | string | Free-text location. |
hashTags | string[] | Tags without #. |
imageUrls | string[] | URLs from add_image_from_url (must be dresez-hosted). |
Search approved listings. Returns up to 8 compact hits with shareable URLs.
| Field | Type | Notes |
|---|---|---|
q | string | Free-text (brand, item, colour). Typo-tolerant. |
country | string | ISO country code filter. |
gender | enum | As above. |
priceMin, priceMax | number | Inclusive price bounds. |
limit | number | 1–8 (default 8). |
Fetch a public image by URL and store it on dresez, returning an assets.dresez.com URL to pass into create_post.imageUrls. Only http(s) URLs pointing to a jpeg/png/webp/gif are accepted.
| Field | Type | Notes |
|---|---|---|
url required | string | Public image URL. |
add_image_from_url for each photo → collect the returned dresez URLs.create_post with title, country, price, and the image URLs.postId and a shareable listing url; the post goes live once moderation approves it.add_image_from_url first.