Korean Law Search

law_amendment_summary

List all revisions of a law within a date range (법령 개정 이력 조회). Shows when and how a law was amended over time. Use the MST values from the results with article_amendment_diff to see specific article changes. Args: law_name: Law name (e.g., "근로기준법") date_from: Start date YYYYMMDD (default "20100101") date_to: End date YYYYMMDD (default "20261231") oc: Optional OC override type: Response format - "JSON" (default), "XML", or "HTML" Returns: List of revisions with dates, types, and MST identifiers Examples: >>> law_amendment_summary(law_name="근로기준법", date_from="20200101") >>> law_amendment_summary(law_name="민법", date_from="20150101", date_to="20251231")

Remote rabqatab/lexlink-ko-mcp

Other tools also called law_amendment_summary? 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"
    },
    "date_to": {
      "type": "string",
      "title": "Date To",
      "default": "20261231"
    },
    "law_name": {
      "type": "string",
      "title": "Law Name"
    },
    "date_from": {
      "type": "string",
      "title": "Date From",
      "default": "20100101"
    }
  }
}