Korean Law Search

chain_amendment_track

Track law amendment history with optional article-level diff (법령 개정 추적). Chains: amendment summary → article diff between latest two versions. If article=0, returns only the revision list. If article is specified, also diffs that article between the two most recent revisions. Args: law_name: Law name (e.g., "근로기준법") article: Article number to diff (0 = summary only, e.g., 52 for 제52조) date_from: Start date YYYYMMDD (default "20200101") date_to: End date YYYYMMDD (default "20261231") oc: Optional OC override type: Response format Returns: Revision history and optional article diff Examples: >>> chain_amendment_track(law_name="근로기준법") >>> chain_amendment_track(law_name="근로기준법", article=52, date_from="20180101")

Remote rabqatab/lexlink-ko-mcp

Other tools also called chain_amendment_track? 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"
    },
    "article": {
      "type": "integer",
      "title": "Article",
      "default": 0
    },
    "date_to": {
      "type": "string",
      "title": "Date To",
      "default": "20261231"
    },
    "law_name": {
      "type": "string",
      "title": "Law Name"
    },
    "date_from": {
      "type": "string",
      "title": "Date From",
      "default": "20200101"
    }
  }
}