Skip to main content
Glama
ClawyPro

Clawy MCP Server

by ClawyPro

kakao_maps_search

Search Korean addresses, businesses, and points of interest using Kakao Maps API to find locations in South Korea.

Instructions

Search Korean places via Kakao Maps API. Best for Korean addresses, local businesses, and POI search in South Korea.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesSearch keyword (Korean supported, e.g., '강남역 맛집')
category_group_codeNoCategory: MT1=mart, CS2=convenience, PS3=kindergarten, SC4=school, AC5=academy, PK6=parking, OL7=gas, SW8=subway, BK9=bank, CT1=culture, AG2=broker, PO3=government, AT4=attraction, AD5=accommodation, FD6=food, CE7=cafe, HP8=hospital, PM9=pharmacy
xNoLongitude for center point
yNoLatitude for center point
radiusNoSearch radius in meters (max 20000)
pageNoPage number (default 1)
sizeNoResults per page (default 15, max 45)

Implementation Reference

  • This is the generic handler logic that executes 'kakao_maps_search' (and other tools) by sending a request to the gateway endpoint defined in the tool configuration.
      async (params) => {
        const method = tool.method || "POST";
        const result = await gatewayRequest(method, tool.endpoint, params as Record<string, unknown>);
    
        if (result.error) {
          return {
            content: [{ type: "text" as const, text: `Error (${result.status}): ${result.error}` }],
            isError: true,
          };
        }
    
        const text = typeof result.data === "string"
          ? result.data
          : JSON.stringify(result.data, null, 2);
    
        return {
          content: [{ type: "text" as const, text }],
        };
      },
    );
  • Definition of the 'kakao_maps_search' tool, including its input schema and the API endpoint it maps to.
      name: "kakao_maps_search",
      description: "Search Korean places via Kakao Maps API. Best for Korean addresses, local businesses, and POI search in South Korea.",
      inputSchema: z.object({
        query: z.string().describe("Search keyword (Korean supported, e.g., '강남역 맛집')"),
        category_group_code: z.string().optional()
          .describe("Category: MT1=mart, CS2=convenience, PS3=kindergarten, SC4=school, AC5=academy, PK6=parking, OL7=gas, SW8=subway, BK9=bank, CT1=culture, AG2=broker, PO3=government, AT4=attraction, AD5=accommodation, FD6=food, CE7=cafe, HP8=hospital, PM9=pharmacy"),
        x: z.string().optional().describe("Longitude for center point"),
        y: z.string().optional().describe("Latitude for center point"),
        radius: z.number().optional().describe("Search radius in meters (max 20000)"),
        page: z.number().optional().describe("Page number (default 1)"),
        size: z.number().optional().describe("Results per page (default 15, max 45)"),
      }),
      endpoint: "/v1/kakao-maps/search",
    },
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It mentions the API source (Kakao Maps API) and geographic scope (South Korea), but doesn't disclose behavioral traits like rate limits, authentication needs, pagination behavior, error handling, or what the response looks like. For a search tool with 7 parameters and no output schema, this leaves significant gaps in understanding how the tool behaves.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences with zero waste. The first sentence states the core purpose, and the second provides targeted usage context. Every word earns its place, and it's front-loaded with essential information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 7 parameters, no annotations, and no output schema, the description is incomplete. It doesn't cover response format, error conditions, rate limits, or authentication requirements. While it specifies the geographic and linguistic scope, it misses critical behavioral context needed for effective tool invocation, especially for a search tool that likely returns complex results.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds no additional parameter semantics beyond what's in the schema. It doesn't explain relationships between parameters (e.g., how x/y and radius interact) or provide usage examples. With high schema coverage, the baseline 3 is appropriate as the description doesn't add value here.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Search Korean places via Kakao Maps API' with specific domains (Korean addresses, local businesses, POI search in South Korea). It distinguishes itself from siblings like google_maps_places by specifying the Korean focus, though it doesn't explicitly name alternatives. The verb 'search' is specific and the resource 'places' is clear.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides implicit usage context: 'Best for Korean addresses, local businesses, and POI search in South Korea.' This suggests when to use it (Korean-focused searches) but doesn't explicitly state when not to use it or name specific alternatives like google_maps_places. It offers some guidance but lacks explicit comparisons or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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/ClawyPro/clawy-mcp-server'

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