Korean Law Search

ordin_service

Retrieve local ordinance full text (자치법규 본문 조회). This tool retrieves the complete text of a Korean local ordinance. Args: id: Ordinance ID (either id or mst is required) mst: Ordinance master number (either id or mst is required) oc: Optional OC override (defaults to env var) type: Response format - "JSON" (default), "XML", or "HTML" ctx: MCP context (injected automatically) Returns: Full ordinance text or error Examples: Retrieve by ID: >>> ordin_service(id="000001", type="XML") Retrieve by MST: >>> ordin_service(mst="123456", type="XML")

Remote rabqatab/lexlink-ko-mcp

Other tools also called ordin_service? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "id": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "Id",
      "default": null
    },
    "oc": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Oc",
      "default": null
    },
    "mst": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "title": "Mst",
      "default": null
    },
    "type": {
      "type": "string",
      "title": "Type",
      "default": "JSON"
    }
  }
}