Provides access to trending topics and hot searches from Baidu, China's leading search engine.
Delivers daily rankings and trending content from Bilibili, China's popular video-sharing platform.
Provides featured content from Douban groups, a Chinese social networking platform focused on books, movies, and music.
Built with TypeScript, enabling type-safe integration with AI models accessing the MCP server's capabilities.
Offers real-time trending topics and daily digest content from Zhihu, China's question-and-answer platform.
Uses Zod for schema validation of tool parameters, ensuring properly formatted requests to the MCP server.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Pulse CN MCP Servershow me today's trending topics on Weibo"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
๐ฅ Pulse CN MCP Server
A powerful Model Context Protocol (MCP) server providing real-time trending content from the Chinese internet.
Features โข Installation โข Quick Start โข Documentation โข Contributing โข License
๐ Overview
Pulse CN MCP Server enables AI models to access up-to-date information about what's trending on the Chinese internet. Built with the Model Context Protocol (MCP), it acts as a bridge between AI models and real-time data from China's most popular social media platforms, news sites, and content aggregators.
Related MCP server: Weibo MCP Server
โจ Features
The server provides real-time access to trending data from 18 major Chinese platforms:
Platform | Content | Status |
๐ฎ ๆๅบง่ฟๅฟ | Daily horoscope predictions | โ |
๐ฌ ๆฏๆฅไธๅฅๅฑๅฟ่ฑ่ฏญ | Daily motivational English quotes | โ |
๐ ็ญๆ็ญๆฆ่ๅ | Aggregated trending topics | โ |
๐ฅ ๅพฎๅๅฎๆถ็ญๆ | Weibo real-time trending topics | โ |
๐ฐ ไปๆฅๅคดๆก็ญๆ | Today's Headlines trending news | โ |
๐ ๆพๆนๆฐ้ป็ญๆ | ThePaper.cn news trending topics | โ |
๐ ่ๆๆญฅ่ก่ก็ญๆ | Hupu BXJ real-time trends | ๐ |
โ ็ฅไนๅฎๆถ็ญๆ | Zhihu real-time trending topics | ๐ |
๐ ็ฅไนๆฏๆฅๆฅๆฅ | Zhihu daily digest | ๐ |
๐ผ 36ๆฐช24ๅฐๆถ็ญๆฆ | 36Kr 24-hour trending business news | ๐ |
๐ฌ ๅๅฉๅๅฉๅ จ็ซๆฅๆฆ | Bilibili daily rankings | ๐ |
๐ ็พๅบฆ็ญ็น็ญๆฆ | Baidu trending topics | ๐ |
๐ฑ ๆ้ณ็ญ็น็ญๆฆ | Douyin trending topics | ๐ |
๐ฅ ่ฑ็ฃๅฐ็ป็ฒพ้ | Douban group featured content | ๐ |
๐ป IT่ต่ฎฏ็ญๆฆ | IT news trending topics | ๐ |
๐ ่ๅ ็ฝ็ญๆฆ | Huxiu 24-hour trending topics | ๐ |
๐ฑ ไบงๅ็ป็็ญๆๆฆ | Woshipm daily popular articles | ๐ |
๐ ่ซๆ้จ่ฝๆๆฐ็ญ้จ | Chongbuluo latest popular content | ๐ |
๐ Installation
# Clone the repository
git clone https://github.com/wangtsiao/pulse-cn-mcp.git
# Navigate to the project directory
cd pulse-cn-mcp
# Using npm
npm install
npm run build
# Or using Bun (faster)
bun install
bun run buildโก Quick Start
Start the MCP server with:
# Using npm
npm start
# Or using Bun
bun startThis launches the server using the Stdio transport, making it ready for MCP-compatible AI models to connect.
๐ Documentation
Architecture
Pulse CN MCP Server follows a modular architecture with individual tools for each data source:
src/
โโโ index.ts # Main entry point and server setup
โโโ tools/ # Individual tool implementations
โโโ weiboHotspots.js
โโโ horoscope.js
โโโ dailyEnglishSentence.js
โโโ internetHotspotsAggregator.js
โโโ todayHeadlinesHotspots.js
โโโ paperNewsHotspots.js
โโโ otherHotspots.jsAvailable Tools
Fully Implemented
Tool Name | Description | Endpoint |
| Real-time trending topics from Weibo |
|
| Daily horoscope by zodiac sign |
|
| Daily motivational English quotes |
|
| Aggregated trending topics |
|
| Today's Headlines trending topics |
|
| ThePaper.cn trending news |
|
Coming Soon
hupu-pedestrian-street-hotspotszhihu-realtime-hotspotszhihu-daily-hotspots36-krypton-24-hour-hotspotsbilibili-daily-hotspotsbaidu-hotspotsdouyin-hotspotsdouban-group-hotspotshuxiu-hotspotsproduct-manager-hotspotsin-information-hotspotsinsect-hotspots
Integration Example
Here's how to integrate with the server using TypeScript:
import { McpClient } from "@modelcontextprotocol/sdk/client";
async function example() {
const client = new McpClient();
// Get Weibo trending topics
const weiboHotspots = await client.callTool("weibo-hotspots", {});
console.log(weiboHotspots.content);
// Get daily horoscope for Aries
const horoscope = await client.callTool("horoscope", { sign: "aries" });
console.log(horoscope.content);
}๐ ๏ธ Development
Adding a New Tool
Create a new file in
src/tools/(e.g.,myNewTool.ts)Implement your tool using the MCP Server SDK
Register the tool in
src/index.ts
Example:
// src/tools/myNewTool.ts
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { z } from "zod";
export function registerMyNewTool(server: McpServer) {
server.tool(
"my-new-tool",
"Description of my new tool",
{
// Tool parameters schema
param1: z.string().describe("Parameter description")
},
async (params) => {
// Tool implementation
return {
content: [
{ type: "text", text: "Result of my tool" }
]
};
}
);
}
// src/index.ts - Add import and registration
import { registerMyNewTool } from './tools/myNewTool.js';
// ...
registerMyNewTool(server);๐ค Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Fork the project
Create your feature branch (
git checkout -b feature/amazing-feature)Commit your changes (
git commit -m 'Add some amazing feature')Push to the branch (
git push origin feature/amazing-feature)Open a Pull Request
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
๐ Acknowledgements
This project utilizes the free APIs provided by ้ฉๅฐ้ฉAPI. We express our sincere gratitude for their excellent service and support.
This server cannot be installed
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.