Taiwan Health MCP Server

以官方 **TypeScript MCP SDK**(`@modelcontextprotocol/sdk`)建構的 Node.js 伺服器,對外提供 **49 個工具**,涵蓋 11 個工具群組。專為高吞吐量的生產級 SaaS 部署設計。

Local serverstdioPython

What is the Taiwan Health MCP MCP server?

以官方 TypeScript MCP SDK@modelcontextprotocol/sdk)建構的 Node.js 伺服器,對外提供 49 個工具,涵蓋 11 個工具群組。專為高吞吐量的生產級 SaaS 部署設計。. The taiwan health mcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 8 defined tools rather than through you.

Adding it to your client

The server ships on npm as npm, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Its toolset

Everything the assistant can do here goes through one of these:

  • nginx單一對外入口,預設 :8080(WEB_PORT)
  • web — Next.js 前端:公開頁面 + /admin 管理後台 SPA
  • app — Node MCP 伺服器 + 管理後台 REST API(node dist/server.js;只在內部網路,不對主機開埠)
  • admin-worker — 背景工作執行器(所有匯入與嵌入工作,node dist/admin/adminWorker.js)
  • postgres — PostgreSQL 16 + pgvector
  • pgbouncer — 連線池(transaction mode)
  • redis — 回應快取
  • ICD-10 — search_medical_codes、infer_complications、get_nearby_codes、check_medical_conflict、browse_icd_category

Configuration

You will need one environment variable: ADMIN_SESSION_SECRET. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the taiwan health mcp mcp server does with a few real requests.

When to reach for it

Among the database access options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Taiwan Health MCP's toolset — nginx, web, app and 5 more — is a fair guide to whether it matches your workflow. It is maintained by healthymind-tech; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Taiwan Health MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
nginx**單一對外入口**,預設 :8080(WEB_PORT)
webNext.js 前端:公開頁面 + /admin 管理後台 SPA
appNode MCP 伺服器 + 管理後台 REST API(node dist/server.js;只在內部網路,不對主機開埠)
admin-worker背景工作執行器(所有匯入與嵌入工作,node dist/admin/adminWorker.js)
postgresPostgreSQL 16 + pgvector
pgbouncer連線池(transaction mode)
redis回應快取
ICD-10search_medical_codes、infer_complications、get_nearby_codes、check_medical_conflict、browse_icd_category

How to install the Taiwan Health MCP MCP server

{
  "mcpServers": {
    "taiwan-health": {
      "command": "npx",
      "args": ["-y", "npm"],
      "env": {
        "ADMIN_SESSION_SECRET": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
ADMIN_SESSION_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use Taiwan Health MCP to nginx.
  • Use Taiwan Health MCP to web.
  • Use Taiwan Health MCP to app.

Frequently asked questions

It connects Taiwan Health MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 8 tools (nginx, web, app, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Taiwan Health MCP directly.