Korean Law Search
eflaw_search
Search current laws by effective date (시행일 기준 현행법령 검색). This tool searches Korean laws organized by effective date. Use this when you need to find laws that are currently in effect. Args: query: Search keyword (law name or content) 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, e.g., "20240101~20241231") org: Ministry/department code filter knd: Law type filter Returns: Search results with law list or error Examples: Search for "자동차관리법": >>> eflaw_search(query="자동차관리법", display=10, type="JSON") Search with date range: >>> eflaw_search( ... query="자동차", ... ef_yd="20240101~20241231", ... type="JSON" ... )
Other tools also called eflaw_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"
},
"display": {
"type": "integer",
"title": "Display",
"default": 20
}
}
}