Install
$ agentstack add mcp-mackinhung-mcp-taiwan-realestate ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
MCP Taiwan Realestate
> MCP Server:台灣不動產實價登錄資料查詢
提供台灣(新北市為主)不動產實價登錄資料查詢功能,支援多維度篩選與統計分析。
工具清單
| 工具名稱 | 說明 | |----------|------| | search_transactions_by_area | 依行政區查詢新北市不動產實價登錄成交案件 | | search_transactions_by_date | 依日期範圍查詢不動產成交案件,可加價格篩選 | | get_area_price_statistics | 取得區域房價統計:均價、中位數、最高最低、交易量 | | get_recent_transactions | 取得最新一期不動產成交案件,依日期排序 | | get_price_trend | 分析區域房價趨勢,提供月度或季度平均價與漲跌幅 |
安全徽章
- 資料敏感度: public
- 權限: readonly
- 外部 API: data.ntpc.gov.tw
- 開源: 是
安裝
npm install
使用方式
Cloudflare Workers 部署
npx wrangler deploy
MCP 協定
標準 MCP 協定流程:
- initialize → 取得 server 資訊與能力宣告
- tools/list → 列出所有可用工具
- tools/call → 呼叫指定工具
工具參數範例
searchtransactionsby_area
{
"district": "中和區",
"limit": 20
}
searchtransactionsby_date
{
"start_date": "202501",
"end_date": "202503",
"city": "板橋區",
"min_price": 5000000,
"max_price": 15000000
}
getareaprice_statistics
{
"district": "中和區",
"property_type": "住家"
}
getrecenttransactions
{
"district": "中和區",
"limit": 20
}
getpricetrend
{
"district": "中和區",
"period": "monthly",
"months_back": 12
}
技術棧
- 框架: Hono + Cloudflare Workers
- 語言: TypeScript (strict mode)
- 測試: Vitest (95 tests, 100% pass rate)
- 協定: MCP 2024-11-05
開發
本地測試
npm test
型別檢查
npx tsc --noEmit
本地開發
npm run dev
License
MIT
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: MackinHung
- Source: MackinHung/mcp-taiwan-realestate
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.