Korean Law Search

admrul_service

Retrieve administrative rule full text (행정규칙 본문 조회). This tool retrieves the complete text of Korean administrative rules. Includes rule content, addenda, and annexes (forms/attachments). Args: id: Rule sequence number (required if lid/lm not provided) lid: Rule ID (alternative to id) lm: Rule name (exact match search) oc: Optional OC override (defaults to env var) type: Response format - "JSON" (default), "XML", or "HTML" ctx: MCP context (injected automatically) Returns: Full administrative rule text with content and annexes or error Examples: Retrieve by ID: >>> admrul_service(id="62505", type="XML") Retrieve by LID: >>> admrul_service(lid="10000005747", type="XML")

Remote rabqatab/lexlink-ko-mcp

Other tools also called admrul_service? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "id": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "Id",
      "default": null
    },
    "lm": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Lm",
      "default": null
    },
    "oc": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Oc",
      "default": null
    },
    "lid": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "Lid",
      "default": null
    },
    "type": {
      "type": "string",
      "title": "Type",
      "default": "JSON"
    }
  }
}