Twinkle HubTwinkle Hub
登入

📌 2026-08-17 新增:⚖️ 台灣法條時光機 — 歷史法條原文 · 修法沿革 · 全文檢索 · 條文關聯圖(935 個 dataset · 35,454+ 筆 row)

查看完整 Changelog →

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 安裝​步驟。

查看使用者設定​文件