ashares_quote

Pack: china-stocks · Endpoint: https://gateway.pipeworx.io/china-stocks/mcp

Real-time quote(s) for Chinese A-share stocks by 6-digit code (Shanghai 6xxxxx, Shenzhen 0xxxxx/3xxxxx, STAR 688xxx, ChiNext 30xxxx, Beijing 8xxxxx/4xxxxx). Returns name, current price, change and change %, open, previous close, day high/low, volume, turnover, and the quote timestamp. Accepts one code or a comma-separated list. Example: ashares_quote({ symbols: “600519,000858” }) for Kweichow Moutai and Wuliangye. Source: Sina (keyless).

Parameters

NameTypeRequiredDescription
symbolsstringyesOne 6-digit code or a comma-separated list, e.g. “600519” or “600519,000001,300750”. sh/sz/bj prefixes are accepted but optional.

Example call

Arguments

{
  "symbols": "600519"
}

curl

curl -X POST https://gateway.pipeworx.io/china-stocks/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ashares_quote","arguments":{"symbols":"600519"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('ashares_quote', {
  "symbols": "600519"
});

More examples

{
  "symbols": "600519,000858,300750"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "china-stocks": {
      "url": "https://gateway.pipeworx.io/china-stocks/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 22, 2026