ashares_bulletins
Pack: china-exchange-data · Endpoint: https://gateway.pipeworx.io/china-exchange-data/mcp
上交所上市公司公告 — SSE-listed company disclosure bulletins (公告) by 6-digit code: title, type (半年报/年报/董事会/股东会/回购/关联交易 etc.), date, and the PDF URL on sse.com.cn. Answers “600519最新公告”, “贵州茅台公司公告”, “SSE company bulletins since 2026-01-01”, “annual report / 年报 filings for a code”. SZSE-listed codes (0/3-prefixed) are not covered — this endpoint is SSE-only. Source: SSE queryCompanyBulletinNew (keyless).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
code | string | yes | 6-digit SSE code, e.g. “600519” (贵州茅台). |
since | string | no | Only return bulletins on or after this date, YYYY-MM-DD (default: no lower bound — most recent first). |
type | string | no | Filter by bulletin type substring, e.g. “年报” or “股东会” (default: all types). |
limit | number | no | Max bulletins to return, 1-100 (default 20, newest first). The response always reports the true total on file. |
Example call
Arguments
{
"code": "600519",
"since": "2026-01-01",
"limit": 8
}
curl
curl -X POST https://gateway.pipeworx.io/china-exchange-data/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ashares_bulletins","arguments":{"code":"600519","since":"2026-01-01","limit":8}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ashares_bulletins', {
"code": "600519",
"since": "2026-01-01",
"limit": 8
});
More examples
{
"code": "600519",
"type": "年报"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"china-exchange-data": {
"url": "https://gateway.pipeworx.io/china-exchange-data/mcp"
}
}
}
See Getting Started for client-specific install steps.