Korean Law Search
expc_service
Retrieve legal interpretation full text (법령해석례 본문 조회). This tool retrieves the complete text of a legal interpretation precedent, including the question summary, answer, and reasoning. Args: id: Legal interpretation sequence number (required) lm: Legal interpretation name (optional) sections: "summary" to exclude 이유 (detailed reasoning), or "full"/None for everything. Returns 안건명, 질의요지, 회답 in summary mode (~2KB vs ~5KB full). oc: Optional OC override (defaults to env var) type: Response format - "JSON" (default), "XML", or "HTML" ctx: MCP context (injected automatically) Returns: Full legal interpretation text with question, answer, and reasoning or error Examples: Retrieve by ID: >>> expc_service(id="334617", type="XML") Retrieve with name: >>> expc_service(id="315191", lm="여성가족부 - 건강가정기본법 제35조 제2항 관련", type="XML")
Other tools also called expc_service?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Id"
},
"lm": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Lm",
"default": null
},
"oc": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Oc",
"default": null
},
"type": {
"type": "string",
"title": "Type",
"default": "JSON"
},
"sections": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Sections",
"default": null
}
}
}