china_news_article
Pack: china-news · Endpoint: https://gateway.pipeworx.io/china-news/mcp
Look up one indexed China/Hong Kong/Taiwan news article by its URL and return everything known about it: publisher, headline, publication time, GDELT theme tags, average article tone and the places it mentions. Pass a url exactly as china_news_search returned it. There is no article text — GDELT indexes metadata only — and this tool says so explicitly rather than returning an empty body field.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | The article URL, as returned by china_news_search. |
Example call
Arguments
{
"url": "https://english.news.cn/20260911/f8dbbecb7ec349ec979be485497aad96/c.html"
}
curl
curl -X POST https://gateway.pipeworx.io/china-news/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"china_news_article","arguments":{"url":"https://english.news.cn/20260911/f8dbbecb7ec349ec979be485497aad96/c.html"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('china_news_article', {
"url": "https://english.news.cn/20260911/f8dbbecb7ec349ec979be485497aad96/c.html"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"china-news": {
"url": "https://gateway.pipeworx.io/china-news/mcp"
}
}
}
See Getting Started for client-specific install steps.