Korean Law Search
chain_full_research
Complete legal research in one call (종합 법률 조사). Chains: AI search → statutes → precedents with outcome analysis → interpretations → citations. This is the most comprehensive single-call research tool. Args: query: Natural language query (e.g., "음주운전 처벌 기준", "임대차 보증금 반환") display: Results per sub-query (default 5) oc: Optional OC override type: Response format Returns: Combined legal analysis with statutes, precedent statistics, interpretations, and citations Examples: >>> chain_full_research(query="부당해고 구제") >>> chain_full_research(query="개인정보 유출 신고 의무")
Other tools also called chain_full_research?
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"
},
"query": {
"type": "string",
"title": "Query"
},
"display": {
"type": "integer",
"title": "Display",
"default": 5
}
}
}