ICD-10-CM 中文/英文 病名查詢
tw_lookup_icd10
台灣專屬MIT
ICD-10-CM 中文版查詢 (衛福部健保署翻譯 v2023, data.gov.tw 177507).
96,803 個 ICD-10 code, 涵蓋全部 A00-Z99 + V01-Y98 外因碼 + 手術
ICD-10-PCS. 至少要給 `code` 或 `keyword` 其一.
Args:
code: ICD-10 編碼 (prefix match), e.g. "A00", "I10", "E11.9"
keyword: 中文 / 英文 病名 substring, e.g. "霍亂", "diabetes",
"高血壓", "myocardial infarction"
limit: max 結果 (1..200, default 20)
Returns:
{n_corpus, n_returned, query, hits: [{code, use_flag, name_en,
name_zh, status, revised_at}, ...]}
典型用例:
「I10 是什麼病」 → tw_lookup_icd10(code="I10")
「糖尿病所有 code」 → tw_lookup_icd10(keyword="糖尿病")
「diabetes type 2 ICD」 → tw_lookup_icd10(keyword="diabetes")輸入 schema
{
"properties": {
"code": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Code"
},
"keyword": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Keyword"
},
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
}
},
"title": "tw_lookup_icd10Arguments",
"type": "object"
}呼叫方式
配置好 Twinkle Hub 的 MCP client 後,agent 會看到 tw_lookup_icd10。直接讓它呼叫即可,例如:
# Ask Claude / any MCP client: 請用 tw_lookup_icd10 處理 "…"。 # It will call: tw_lookup_icd10(input="…")
尚未設定 Client?
Claude Desktop 約 3 分鐘即可完成設定 — 下載 .mcpb 檔案並雙擊即可,或參閱文件中的各 Client 安裝步驟。
查看使用者設定文件