Korean Law Search

article_amendment_diff

Compare how a specific article changed between two law versions (조문 신구대조). Use MST values from law_amendment_summary to compare article text across revisions. Args: mst_old: MST of the older version (법령일련번호, from law_amendment_summary) mst_new: MST of the newer version article: Article number (e.g., 52 for 제52조) article_branch: Branch number (e.g., 2 for 제52조의2, default 0) oc: Optional OC override type: Response format - "JSON" (default), "XML", or "HTML" Returns: Side-by-side comparison with line-level diff Examples: >>> article_amendment_diff(mst_old="269000", mst_new="273000", article=52)

Remote rabqatab/lexlink-ko-mcp

Other tools also called article_amendment_diff? 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"
    },
    "mst_new": {
      "type": "string",
      "title": "Mst New"
    },
    "mst_old": {
      "type": "string",
      "title": "Mst Old"
    },
    "article_branch": {
      "type": "integer",
      "title": "Article Branch",
      "default": 0
    }
  }
}