Korean Law Search

eflaw_josub

Query specific article/paragraph by effective date (시행일 기준 조·항·호·목 조회). **BEST TOOL for querying specific articles like "제174조", "제3조" etc.** This returns only the requested article/paragraph, avoiding large full-law responses. Args: id: Law ID (either id or mst is required) mst: Law serial number (MST) ef_yd: Effective date (YYYYMMDD) - required when using mst jo: Article number in XXXXXX format. Format: first 4 digits = article number (zero-padded), last 2 digits = branch suffix (00=main). Examples: "017400" (제174조), "017200" (제172조), "000300" (제3조), "001502" (제15조의2) hang: Paragraph number (6 digits, e.g., "000100" for 제1항) ho: Item number (6 digits, e.g., "000200" for 제2호) mok: Subitem (UTF-8 encoded, e.g., "다" for 다목) oc: Optional OC override (defaults to env var) type: Response format - "JSON" (default), "XML", or "HTML" Returns: Specific law section content Examples: Query 자본시장법 제174조: >>> eflaw_josub(mst="279823", jo="017400", type="XML") Query 건축법 제3조 제1항: >>> eflaw_josub(mst="276925", jo="000300", hang="000100", type="XML")

Remote rabqatab/lexlink-ko-mcp

Other tools also called eflaw_josub? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "ho": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Ho",
      "default": null
    },
    "id": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "Id",
      "default": null
    },
    "jo": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "Jo",
      "default": null
    },
    "oc": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Oc",
      "default": null
    },
    "mok": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Mok",
      "default": null
    },
    "mst": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "Mst",
      "default": null
    },
    "hang": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Hang",
      "default": null
    },
    "type": {
      "type": "string",
      "title": "Type",
      "default": "JSON"
    },
    "ef_yd": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "Ef Yd",
      "default": null
    }
  }
}