discover_tools
List all tools wired in this MCP build to identify available functions for land analysis, regulation verification, and permit search.
Instructions
List all currently wired tools in this MCP build.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/server.ts:93-117 (handler)The handler function for the 'discover_tools' tool. It is an inline async arrow function that returns static text listing all available tools in the korean-land-mcp v2.0 build. No imported helper — the logic is entirely inline.
server.tool( "discover_tools", "List all currently wired tools in this MCP build.", {}, async () => ({ content: [ { type: "text" as const, text: [ "korean-land-mcp v2.0 — V-World backed, mock fallback REMOVED", "", "Tools:", "- resolve_parcel(query): address|PNU → canonical parcel", "- get_zoning(query): 용도지역·지구·구역 + 토지거래허가구역", "- get_district_plan(query): 지구단위계획 + 개발행위허가제한", "- get_urban_facility(query): 도시계획시설 9개 카테고리", "- get_other_law_designations(query): 38개 개별법령 지정 (국계법 76조⑤ 우선위임 힌트 포함)", "- get_land_attributes(query): 지목 파싱 + 공시지가 + 건물 유무", "- analyze_parcel(query): 위 전체를 1회 호출로 체이닝", "", "Legal citations (법령·조례 원문) are intentionally out of scope — use korean-law MCP.", ].join("\n"), }, ], }) - src/server.ts:96-96 (schema)The schema for 'discover_tools' is an empty object {} — no input parameters are accepted.
{}, - src/server.ts:93-118 (registration)Registration of the 'discover_tools' tool on the McpServer instance via server.tool().
server.tool( "discover_tools", "List all currently wired tools in this MCP build.", {}, async () => ({ content: [ { type: "text" as const, text: [ "korean-land-mcp v2.0 — V-World backed, mock fallback REMOVED", "", "Tools:", "- resolve_parcel(query): address|PNU → canonical parcel", "- get_zoning(query): 용도지역·지구·구역 + 토지거래허가구역", "- get_district_plan(query): 지구단위계획 + 개발행위허가제한", "- get_urban_facility(query): 도시계획시설 9개 카테고리", "- get_other_law_designations(query): 38개 개별법령 지정 (국계법 76조⑤ 우선위임 힌트 포함)", "- get_land_attributes(query): 지목 파싱 + 공시지가 + 건물 유무", "- analyze_parcel(query): 위 전체를 1회 호출로 체이닝", "", "Legal citations (법령·조례 원문) are intentionally out of scope — use korean-law MCP.", ].join("\n"), }, ], }) );