China News

live News

China / Hong Kong / Taiwan news search.

3 tools
0ms auth
free tier 50 calls/day

Tools

china_news_article

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

No parameters required.

Try it
china_news_outlets

List the Chinese, Hong Kong, Taiwanese and overseas-Chinese news publishers Pipeworx has audited — 106 of them — with each one's jurisdiction, publishing language, how its content is reachable, whethe

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/china-news/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/china-news/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"china_news_search","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("china_news_search", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("china / hong kong / taiwan news search");