Korean Law Search
elaw_service
Retrieve English law full text (영문법령 본문 조회). This tool retrieves the complete text of Korean laws translated to English. Useful for international legal research and cross-border understanding. Args: id: Law ID (required if mst not provided) mst: Law master number (required if id not provided) lm: Law name (alternative search method) ld: Announcement date (YYYYMMDD) ln: Announcement number oc: Optional OC override (defaults to env var) type: Response format - "JSON" (default), "XML", or "HTML" ctx: MCP context (injected automatically) Returns: Full English law text with articles or error Examples: Retrieve by ID: >>> elaw_service(id="000744", type="XML") Retrieve by MST: >>> elaw_service(mst="127280", type="XML")
Other tools also called elaw_service?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Id",
"default": null
},
"ld": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Ld",
"default": null
},
"lm": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Lm",
"default": null
},
"ln": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Ln",
"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"
}
}
}