hk_new_companies
Pack: hk-companies · Endpoint: https://gateway.pipeworx.io/hk-companies/mcp
Companies newly incorporated (Hong Kong local) or newly registered/re-domiciled (non-Hong Kong) on the Companies Registry since a given date — the official weekly open-data feed via data.gov.hk (新註冊/新成立公司, since 2024-12-30). Returns each company’s BR number, English/Chinese name, type, and incorporation-or-registration date, most recent first. The feed has roughly a 1-week publication lag, so a since newer than the latest published week returns zero rows with a data_lag_note explaining it — that is lag, not “no new companies”. Use for “new Hong Kong companies this week”, “companies incorporated in HK since
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
since | string | no | Only include companies incorporated/registered on/after this date (YYYY-MM-DD). Default: 7 days before the latest published week. |
type | string | no | Restrict to Hong Kong local companies (“local”) or non-Hong Kong companies (“non_hk”). Omit for both. |
limit | number,string | no | Max companies to return, 1-200 (default 50). |
Example call
Arguments
{
"since": "2026-08-24"
}
curl
curl -X POST https://gateway.pipeworx.io/hk-companies/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hk_new_companies","arguments":{"since":"2026-08-24"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('hk_new_companies', {
"since": "2026-08-24"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"hk-companies": {
"url": "https://gateway.pipeworx.io/hk-companies/mcp"
}
}
}
See Getting Started for client-specific install steps.