Skip to main content
Glama
leadbrain

korean-data-mcp

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
NameRequiredDescriptionDefault
keywordYes
max_itemsNo
sortNorecent

Implementation Reference

  • 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},
        )

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/leadbrain/korean-data-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server