Korean Law Search
prec_service
Retrieve court precedent full text (판례 본문 조회). Args: id: Precedent sequence number (판례일련번호) lm: Precedent name (optional) sections: Response detail level: - "summary": Returns 판시사항, 판결요지, 참조조문, 참조판례 only (~5KB). Excludes 판례내용 (full judgment text, often 15-25KB). **Recommended for PlayMCP** to stay under 20KB limit. - "full" or None: Returns everything including 판례내용 (default). oc: Optional OC override type: Response format - "JSON" (default), "XML", or "HTML" Returns: Full precedent text with details or error Examples: >>> prec_service(id="228541") >>> prec_service(id="228541", sections="summary") # PlayMCP-safe
Other tools also called prec_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
}
}
}