search_bunjang
Search Bunjang, Korea's largest C2C marketplace, to find products using keywords in Korean or English. Filter results by sort order and return detailed listing information including title, price, condition, and seller details.
Instructions
Search Bunjang (번개장터) — Korea's largest C2C marketplace.
Args: keyword: Search keyword in Korean or English max_items: Maximum number of listings to return (default 30, max 100) sort: Sort order — 'recent' (최신순) or 'popular' (인기순)
Returns: List of listing objects with title, price, condition, seller, image, url fields.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keyword | Yes | ||
| max_items | No | ||
| sort | No | recent |
Implementation Reference
- src/korean_data_mcp/server.py:147-168 (handler)The `search_bunjang` tool is implemented as an async function decorated with `@mcp.tool()`, which calls the Apify actor `bunjang-market-scraper`. It accepts a keyword, max_items, and sort order.
@mcp.tool() async def search_bunjang( keyword: str, max_items: int = 30, sort: str = "recent", ) -> list[dict]: """ Search Bunjang (번개장터) — Korea's largest C2C marketplace. Args: keyword: Search keyword in Korean or English max_items: Maximum number of listings to return (default 30, max 100) sort: Sort order — 'recent' (최신순) or 'popular' (인기순) Returns: List of listing objects with title, price, condition, seller, image, url fields. """ max_items = min(max_items, 100) return await _run_actor( f"{APIFY_ACCOUNT}/bunjang-market-scraper", {"keyword": keyword, "maxItems": max_items, "sort": sort}, )