Skip to main content
ClaudeWave
pipeworx-io avatar
pipeworx-io

mcp-hsa-singapore

View on GitHub

Singapore HSA registered therapeutic products — the Health Sciences

MCP ServersOfficial Registry0 stars0 forks● TypeScriptMITUpdated today
ClaudeWave Trust Score
95/100
✓ Verified
Passed
  • ✓Open-source license (MIT)
  • ✓Actively maintained (<30d)
  • ✓Clear description
  • ✓Topics declared
  • ✓Documented (README)
Last scanned: 9/27/2026
Install in Claude Code / Claude Desktop
Method: NPX · @pipeworx/mcp-hsa-singapore
Claude Code CLI
claude mcp add mcp-hsa-singapore -- npx -y @pipeworx/mcp-hsa-singapore
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp-hsa-singapore": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-hsa-singapore"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# @pipeworx/hsa-singapore

Medicines registered in Singapore — the Health Sciences Authority (HSA) official Listing of Registered Therapeutic Products (~5,500 products), live from data.gov.sg: SIN licence number, product name, licence holder, approval date, forensic classification, ATC code, dosage form, route, manufacturers, country of manufacture, active ingredients with strengths. Keyless.

Part of [Pipeworx](https://pipeworx.io) — an MCP gateway connecting AI agents to 1684+ live data sources.

## Tools

- `hsa_sg_search(query?, active_ingredient?, atc_code?, holder?, manufacturer?, country?, forensic_classification?, route?, dosage_form?, approved_from?, approved_to?, limit?, offset?)` — search/filter with real offset+limit pagination and a `total_matches` count, newest approval first. Answers "is X approved in Singapore", "which Singapore-registered products contain Y", "what does company Z hold a licence for".
- `hsa_sg_product(licence_no | name)` — the full registration record for one product, by SIN licence number (exact) or name (exact, else substring, with `match_type` marked). The listing has no indication text, so this returns `indication_text: null` with the authoritative listing and HSA infosearch URLs rather than a paraphrase.
- `hsa_sg_recent_changes(since, limit?)` — products newly registered on or after a date, from the approval date. New registrations only (`removals_visible: false`, see below). Returns `comparable: false, reason: "since_after_published_data"` rather than a false zero when `since` is past the published data.
- `hsa_sg_dataset_info()` — row count, source last-updated date, earliest/latest approval date, licence, fields present and absent, and distinct values with counts for forensic classification, country of manufacture, route and dosage form (exact spellings for the filters).

Every call rejects argument names it does not declare (`user_error: … does not recognise argument(s)`) instead of silently dropping them.

## Auth

Keyless.

## Data sources

- <https://data.gov.sg/datasets/d_767279312753558cbf19d48344577084/view> — "Listing of Registered Therapeutic Products", published by HSA. Read via `https://data.gov.sg/api/action/datastore_search?resource_id=d_767279312753558cbf19d48344577084&limit=10000` (whole listing in one request, 5,511 rows / ~1.3 MB on 2026-09-26) and the freshness stamp from `https://api-production.data.gov.sg/v2/public/api/datasets/d_767279312753558cbf19d48344577084/metadata` (`lastUpdatedAt`, 2026-08-07 at build time).
- <https://www.hsa.gov.sg/e-services/infosearch> — HSA's own product search, where the approved package insert lives. No per-product URL, and it 403s non-browser clients, so the pack links to it rather than reading it.

### Licence

Singapore Open Data Licence v1.0 (<https://data.gov.sg/open-data-licence>): *"You can use, access, download, copy, distribute, transmit, modify and adapt the datasets … whether commercially or non-commercially"*, worldwide and royalty-free, with a conspicuous attribution notice required. Every response carries that notice in `attribution` / `license` / `license_note` via `attachLicense`.

### Gotchas

- **Rate limit.** Keyless data.gov.sg callers get throttled after a couple of requests in quick succession — sometimes as HTTP 429, sometimes as a 200 whose body is `{"code":24,"name":"TOO_MANY_REQUESTS"}`. The pack fetches the whole listing once per isolate (6h cache) and serves a stale copy rather than failing if a refresh is throttled; with no copy held it returns `{found:false, reason:"upstream_throttled"}`.
- **`Approvaldate` is D/M/YYYY** (`19/11/1991`), not M/D. Parsed to ISO.
- **Multi-valued cells use `&&`.** `Activeingredients` and `Strength` pair up by position (`CAMPHOR&&COAL TAR SOLUTION…` / `2% w/w&&10% w/w…`); manufacturer, country, route and ATC code can be multi-valued too. Split into arrays; `CANADA&&CANADA` collapses to one country.
- **No indication text, no status, no cancellation date.** The listing holds only currently registered products. `recent_changes` therefore reports new registrations only; a cancelled product simply disappears. Say so rather than implying a full diff.
- **Therapeutic products only.** Chinese proprietary medicines are a separate HSA listing — the `tcm-products` pack. Medical devices and cosmetics are separate data.gov.sg datasets again.
- The listing is refreshed a few times a year; `data_as_of` on every response is the source's own `lastUpdatedAt`, and approvals after it are not published yet.

## Quick Start

Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):

```json
{
  "mcpServers": {
    "hsa-singapore": {
      "url": "https://gateway.pipeworx.io/hsa-singapore/mcp"
    }
  }
}
```

### What this endpoint actually serves

`tools/list` at `https://gateway.pipeworx.io/hsa-singapore/mcp` returns the tools in the table
above **plus the shared Pipeworx meta-tools** — `ask_pipeworx`,
`discover_tools`, `search_within`, `remember`/`recall` and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's `initialize` response states its exact scope, and
is the authoritative answer for a given day.

This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
`ask_pipeworx`, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.

Or connect to the full Pipeworx gateway to get every pack's tools listed
directly, instead of just this one's:

```json
{
  "mcpServers": {
    "pipeworx": {
      "url": "https://gateway.pipeworx.io/mcp"
    }
  }
}
```

Both URLs reach the same gateway and the same 1684+ data sources. The
only difference is which pack's tools are listed **directly**; `ask_pipeworx`
reaches all of them from either one.

## No MCP client? Call it over HTTP

```bash
curl -X POST https://gateway.pipeworx.io/v1/tools/hsa_sg_search \
  -H 'Content-Type: application/json' \
  -d '{"query":"metformin","limit":5}'
```

No account needed for the first calls. Inspect any tool: `GET https://gateway.pipeworx.io/v1/tools/hsa_sg_search`. Find one: `POST https://gateway.pipeworx.io/v1/tools/search_packs` with `{"query":"..."}`.

## Standalone (no gateway account)

This package also runs as a local stdio MCP server — no Pipeworx account, no
gateway round-trip:

```json
{
  "mcpServers": {
    "hsa-singapore": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-hsa-singapore"]
    }
  }
}
```

Or run it directly to confirm it starts:

```bash
npx -y @pipeworx/mcp-hsa-singapore
```

It speaks MCP over stdin/stdout and answers `initialize`/`tools/list`/`tools/call`
for **only** this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.

## Using with ask_pipeworx

Instead of calling tools directly, you can ask questions in plain English —
this works on the pack endpoint above as well as on the full gateway:

```
ask_pipeworx({ question: "your question about Hsa Singapore data" })
```

The gateway picks the right tool and fills the arguments automatically.

## More

- [Docs and guides](https://pipeworx.io/docs)
- [pipeworx.io](https://pipeworx.io)

## License

MIT
hsa-singaporemcpmcp-servermodel-context-protocolpipeworx

What people ask about mcp-hsa-singapore

What is pipeworx-io/mcp-hsa-singapore?

+

pipeworx-io/mcp-hsa-singapore is mcp servers for the Claude AI ecosystem. Singapore HSA registered therapeutic products — the Health Sciences It has 0 GitHub stars and its last recorded update is dated 2026-09-26.

How do I install mcp-hsa-singapore?

+

You can install mcp-hsa-singapore by cloning the repository (https://github.com/pipeworx-io/mcp-hsa-singapore) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is pipeworx-io/mcp-hsa-singapore safe to use?

+

Our security agent has analyzed pipeworx-io/mcp-hsa-singapore and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains pipeworx-io/mcp-hsa-singapore?

+

pipeworx-io/mcp-hsa-singapore is maintained by pipeworx-io. The last recorded GitHub activity is dated 2026-09-26, with 0 open issues.

Are there alternatives to mcp-hsa-singapore?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy mcp-hsa-singapore to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: pipeworx-io/mcp-hsa-singapore
[![Featured on ClaudeWave](https://claudewave.com/api/badge/pipeworx-io-mcp-hsa-singapore)](https://claudewave.com/repo/pipeworx-io-mcp-hsa-singapore)
<a href="https://claudewave.com/repo/pipeworx-io-mcp-hsa-singapore"><img src="https://claudewave.com/api/badge/pipeworx-io-mcp-hsa-singapore" alt="Featured on ClaudeWave: pipeworx-io/mcp-hsa-singapore" width="320" height="64" /></a>

More MCP Servers

mcp-hsa-singapore alternatives