Korean Law Search

aiRltLs_search

⭐ PREFERRED TOOL for discovering related laws from vague topics. Use this when user wants to explore laws around a general subject. 지능형 법령검색 시스템 연관법령 API (AI-powered related laws search). Finds laws semantically related to a given law name or keyword. Best for: Finding related laws like "민법" → 상법, 의료법, 소송촉진법 Args: query: Law name or keyword to find related laws (e.g., "민법", "형법") search: Search scope: - 0: 법령조문 (law articles, default) - 1: 행정규칙조문 (administrative rule articles) oc: Optional OC override type: Response format - "JSON" (default), "XML", or "HTML" Returns: List of semantically related law articles (법령조문 items) Example: >>> aiRltLs_search(query="민법") # Returns: 상법 제54조 (상사법정이율), 의료법 제50조 (「민법」의 준용), etc.

Remote rabqatab/lexlink-ko-mcp

Other tools also called aiRltLs_search? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "oc": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Oc",
      "default": null
    },
    "type": {
      "type": "string",
      "title": "Type",
      "default": "JSON"
    },
    "query": {
      "type": "string",
      "title": "Query"
    },
    "search": {
      "type": "integer",
      "title": "Search",
      "default": 0
    }
  }
}