hk_quote
Pack: hk-stocks · Endpoint: https://gateway.pipeworx.io/hk-stocks/mcp
Real-time quote(s) for Hong Kong-listed stocks by HKEX code. Answers ‘Tencent stock price’, ‘腾讯股价’, ‘00700 quote’, ‘HSBC Hong Kong share price’. Accepts one code or a comma-separated list, in any common form (700, 00700, 0700.HK). Returns English and Chinese name, price, change and change %, open, previous close, day high/low, volume, turnover in HKD, P/E, and the 52-week range. If you have a company NAME rather than a code, call hk_resolve_symbol first. Example: hk_quote({ codes: “00700,00005” }) for Tencent and HSBC. Source: Sina (keyless).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
codes | string | yes | One HKEX code or a comma-separated list, e.g. “00700” or “700,5,9988”. Accepts 0700.HK form too. Max 30. |
Example call
Arguments
{
"codes": "00700"
}
curl
curl -X POST https://gateway.pipeworx.io/hk-stocks/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hk_quote","arguments":{"codes":"00700"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('hk_quote', {
"codes": "00700"
});
More examples
{
"codes": "00700,00005,09988"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"hk-stocks": {
"url": "https://gateway.pipeworx.io/hk-stocks/mcp"
}
}
}
See Getting Started for client-specific install steps.