Korean Law Search

check_precedent_odds

Find precedent statistics and key outcome factors for a legal question (판례 승률 분석). Searches court precedents, analyzes outcomes (인용/기각/파기), and extracts key factors that influenced decisions. Useful for assessing legal odds. Args: query: Legal question or keywords (e.g., "택배 파손 보상", "임대차 보증금 반환") display: Number of precedents to search (max 100, default 20) top_n: Number of top precedents to analyze in detail (default 5) oc: Optional OC override type: Response format - "JSON" (default), "XML", or "HTML" Returns: Outcome statistics, key factors, and representative case summaries Examples: >>> check_precedent_odds(query="택배 파손 보상") >>> check_precedent_odds(query="부당해고", display=50, top_n=10)

Remote rabqatab/lexlink-ko-mcp

Other tools also called check_precedent_odds? 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"
    },
    "top_n": {
      "type": "integer",
      "title": "Top N",
      "default": 5
    },
    "display": {
      "type": "integer",
      "title": "Display",
      "default": 20
    }
  }
}