Korean Law Search
elaw_search
Search English-translated Korean laws (영문법령 목록 조회). This tool searches Korean laws that have been translated to English. Useful for international users or bilingual legal research. Args: query: Search keyword (Korean or English, default "*") display: Number of results per page (max 100, default 20). **Recommend 50-100 for law searches (법령 검색) to ensure exact matches are found.** page: Page number (1-based, default 1) oc: Optional OC override (defaults to env var) type: Response format - "JSON" (default), "XML", or "HTML" sort: Sort order - "lasc"|"ldes"|"dasc"|"ddes"|"nasc"|"ndes"|"efasc"|"efdes" ef_yd: Effective date range (YYYYMMDD~YYYYMMDD) org: Ministry/department code filter knd: Law type filter ctx: MCP context (injected automatically) Returns: Search results with English law list or error Examples: Search for "insurance": >>> elaw_search(query="insurance", display=10, type="XML") Search for "가정폭력방지": >>> elaw_search(query="가정폭력방지", type="XML")
Other tools also called elaw_search?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"oc": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Oc",
"default": null
},
"knd": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Knd",
"default": null
},
"org": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Org",
"default": null
},
"page": {
"type": "integer",
"title": "Page",
"default": 1
},
"sort": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Sort",
"default": null
},
"type": {
"type": "string",
"title": "Type",
"default": "JSON"
},
"ef_yd": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Ef Yd",
"default": null
},
"query": {
"type": "string",
"title": "Query",
"default": "*"
},
"display": {
"type": "integer",
"title": "Display",
"default": 20
}
}
}