Skip to main content
Glama
leadbrain

korean-data-mcp

get_naver_place_reviews

Fetch reviews for Naver Place listings to analyze customer feedback and ratings, returning structured data with author, content, and date information.

Instructions

Fetch reviews for a Naver Place (네이버 플레이스) listing.

Args: place_url: Naver Place URL, e.g. https://map.naver.com/v5/entry/place/1234567890 max_reviews: Maximum number of reviews to return (default 20, max 100)

Returns: List of review objects with author, rating, content, date fields.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
place_urlYes
max_reviewsNo

Implementation Reference

  • Implementation of the get_naver_place_reviews tool handler in the MCP server.
    @mcp.tool()
    async def get_naver_place_reviews(
        place_url: str,
        max_reviews: int = 20,
    ) -> list[dict]:
        """
        Fetch reviews for a Naver Place (네이버 플레이스) listing.
    
        Args:
            place_url: Naver Place URL, e.g. https://map.naver.com/v5/entry/place/1234567890
            max_reviews: Maximum number of reviews to return (default 20, max 100)
    
        Returns:
            List of review objects with author, rating, content, date fields.
        """
        max_reviews = min(max_reviews, 100)
        return await _run_actor(
            f"{APIFY_ACCOUNT}/naver-place-reviews",
            {"placeUrl": place_url, "maxReviews": max_reviews},
        )

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