Korean Law Search
legal_resolver
Find all applicable laws, precedents, and interpretations for a situation (법률 종합 분석). Given a plain language description of a legal situation, this tool searches across multiple legal databases in one call: law articles, court precedents, legal interpretations, and citation networks. Args: situation: Plain language description (e.g., "직원이 고객 데이터를 USB에 담아갔다") display: Results per sub-query (default 5) oc: Optional OC override type: Response format - "JSON" (default), "XML", or "HTML" Returns: Comprehensive legal analysis with applicable laws, precedents, interpretations, and citations Examples: >>> legal_resolver(situation="집주인이 보증금을 안 돌려줘요") >>> legal_resolver(situation="회사에서 갑자기 해고당했어요", display=3)
Other tools also called legal_resolver?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"oc": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Oc",
"default": null
},
"type": {
"type": "string",
"title": "Type",
"default": "JSON"
},
"display": {
"type": "integer",
"title": "Display",
"default": 5
},
"situation": {
"type": "string",
"title": "Situation"
}
}
}