Korea Building Register MCP
Provides 12 tools to query South Korean building register data, including title sheets, floor details, and official house prices via the data.go.kr API. It enables users to perform smart building lookups and region code searches using natural language.
README
🏢 Korea Building Register MCP
English
Ask Claude about Korean building register data — powered by data.go.kr's Building Register API.
Provides 12 tools for querying building register (건축물대장) information including title sheets, floor details, exclusive-use areas, house prices, zoning, and more.
Supported Tools
| Tool | Description |
|---|---|
smart_building_lookup |
🏢 Smart lookup — auto-detects general vs. collective buildings |
search_bjdong_code |
Search region codes (sigungu_cd, bjdong_cd) by name |
get_building_title_info |
Title sheet (표제부) — area, structure, usage, etc. |
get_building_recap_title_info |
Summary title sheet (총괄표제부) |
get_building_basis_ouln_info |
Basic outline (기본개요) |
get_building_floor_ouln_info |
Floor outline (층별개요) |
get_building_expos_info |
Exclusive-use units (전유부) |
get_building_expos_pubuse_area_info |
Exclusive/common area details (전유공용면적) |
get_building_house_price_info |
Official house prices (주택가격) |
get_building_wclf_info |
Sewage treatment facilities (오수정화시설) |
get_building_atch_jibun_info |
Attached land lots (부속지번) |
get_building_jijigu_info |
Zoning districts (지역지구구역) |
Prerequisites
- uv
- API key from 공공데이터포털 (data.go.kr)
- Apply for: 건축HUB 건축물대장정보 서비스
Quick Start: Claude Desktop (stdio)
- Clone this repository
git clone https://github.com/coding-realtor/building-register-mcp.git
cd building-register-mcp
- Open the Claude Desktop config file
# macOS
open "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
# Windows
notepad %APPDATA%\Claude\claude_desktop_config.json
- Add the entry below under
mcpServers
{
"mcpServers": {
"building-register": {
"command": "uv",
"args": [
"run",
"--directory", "/path/to/building-register-mcp",
"data-go-mcp-building-register"
],
"env": {
"BUILDING_REGISTER_API_KEY": "your_api_key_here"
}
}
}
}
Replace
/path/to/building-register-mcpwith the actual path where you cloned the repository.
- Restart Claude Desktop
Setup is complete when you can see the building-register server in the tool list.
Usage Example
Tell me about the building at 서울 종로구 청운동 89-3
Claude will automatically:
- Look up the region code via
search_bjdong_code - Call
smart_building_lookupto fetch building details - Present the results in a readable table
한국어
Claude에게 건축물대장 정보를 물어보세요 — 공공데이터포털 건축물대장정보 API 기반 MCP 서버입니다.
건축물대장 표제부, 층별개요, 전유부, 주택가격, 지역지구구역 등을 조회하는 12개 도구를 제공합니다.
제공 도구 (Tools)
| Tool 명 | 설명 |
|---|---|
smart_building_lookup |
🏢 스마트 조회 — 일반/집합건축물 자동 판별 |
search_bjdong_code |
지역명으로 시군구코드·법정동코드 검색 |
get_building_title_info |
건축물대장 표제부 (대지면적, 건축면적, 용적률 등) |
get_building_recap_title_info |
건축물대장 총괄표제부 |
get_building_basis_ouln_info |
건축물대장 기본개요 |
get_building_floor_ouln_info |
건축물대장 층별개요 |
get_building_expos_info |
건축물대장 전유부 (동/호 정보) |
get_building_expos_pubuse_area_info |
건축물대장 전유공용면적 |
get_building_house_price_info |
건축물대장 주택가격 (공시가격) |
get_building_wclf_info |
건축물대장 오수정화시설 |
get_building_atch_jibun_info |
건축물대장 부속지번 |
get_building_jijigu_info |
건축물대장 지역지구구역 |
사전 준비
- uv 설치
- 공공데이터포털에서 API 키 발급
- 신청 대상: 건축HUB 건축물대장정보 서비스
빠른 시작: Claude Desktop (stdio)
- 레포지토리 클론
git clone https://github.com/coding-realtor/building-register-mcp.git
cd building-register-mcp
- Claude Desktop 설정 파일 열기
# macOS
open "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
# Windows
notepad %APPDATA%\Claude\claude_desktop_config.json
mcpServers항목에 아래 내용 추가
{
"mcpServers": {
"building-register": {
"command": "uv",
"args": [
"run",
"--directory", "C:\\path\\to\\building-register-mcp",
"data-go-mcp-building-register"
],
"env": {
"BUILDING_REGISTER_API_KEY": "여기에_API_키_입력"
}
}
}
}
C:\\path\\to\\building-register-mcp부분을 실제 클론한 경로로 변경하세요.
- Claude Desktop 재시작
도구 목록에 building-register 서버가 표시되면 설정 완료입니다.
사용 예시 (Claude에서)
서울 종로구 청운동 89-3 건물의 건축물대장 조회해줘
강남구 역삼동 736번지 건물의 주택 공시가격을 알려줘
송파구 잠실동 40번지 아파트의 동/호 목록을 보여줘
Claude가 자동으로:
search_bjdong_code로 시군구/법정동 코드를 검색smart_building_lookup으로 건축물 정보를 조회- 결과를 보기 좋은 표로 정리하여 보여줍니다
Gemini CLI / 기타 MCP 클라이언트
Gemini CLI 등 다른 MCP 클라이언트에서도 동일하게 사용할 수 있습니다. 설정 파일의 MCP 서버 항목에 위와 같은 형식으로 추가하세요.
로컬 테스트
# 서버 직접 실행
uv run data-go-mcp-building-register
라이센스
Apache-2.0 — 자세한 내용은 LICENSE 파일을 참고하세요.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。