Korean Law Search
lnkLsOrdJo_search
Search ordinance articles linked to law articles (연계 법령별 조례 조문 목록 조회). This tool searches local ordinance articles that are linked to specific national law articles. Shows which local ordinances implement or relate to specific law provisions. Args: query: Search keyword (default "*") 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" knd: Law type code (to filter by specific law) jo: Article number (4 digits, zero-padded). Examples: "0002" (Article 2), "0020" (Article 20), "0100" (Article 100) jobr: Branch article suffix (2 digits, zero-padded). Examples: "00" (main article), "02" (Article X-2) sort: Sort order ctx: MCP context (injected automatically) Returns: Search results with linked ordinance articles or error Examples: Search ordinances linked to 건축법 시행령: >>> lnkLsOrdJo_search(knd="002118", type="XML") Search specific article (제20조): >>> lnkLsOrdJo_search(knd="002118", jo=20, type="XML")
Other tools also called lnkLsOrdJo_search?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"jo": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Jo",
"default": null
},
"oc": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Oc",
"default": null
},
"knd": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Knd",
"default": null
},
"jobr": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Jobr",
"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"
},
"query": {
"type": "string",
"title": "Query",
"default": "*"
},
"display": {
"type": "integer",
"title": "Display",
"default": 20
}
}
}