poshmark_active_search
Pack: poshmark-comps · Endpoint: https://gateway.pipeworx.io/poshmark-comps/mcp
Search Poshmark ACTIVE (currently listed, not yet sold) listings — for comparing current ask prices against poshmark_sold_search results. No login, no API key. Returns up to ~48 results per call.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Search text, e.g. “lululemon align leggings” |
department | string | no | Optional department filter, e.g. “Women”, “Men”, “Kids”, “Home” |
sort_by | string | no | relevance (default) | price_desc | price_asc |
limit | number | no | Max results to return, 1-48 (default 24) |
Example call
Arguments
{
"query": "leggings",
"department": "Women",
"limit": 10
}
curl
curl -X POST https://gateway.pipeworx.io/poshmark-comps/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"poshmark_active_search","arguments":{"query":"leggings","department":"Women","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('poshmark_active_search', {
"query": "leggings",
"department": "Women",
"limit": 10
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"poshmark-comps": {
"url": "https://gateway.pipeworx.io/poshmark-comps/mcp"
}
}
}
See Getting Started for client-specific install steps.