Pulse CN MCP Server
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: Juhe News 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
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityCmaintenanceA Model Context Protocol server that provides real-time hot trending topics from major Chinese social platforms and news sites.Last updated12,437200MIT

Juhe News MCP Serverofficial
FlicenseBqualityCmaintenanceA Model Context Protocol server that enables large language models to access the latest trending news headlines and detailed content across various categories including recommended, domestic, technology, and sports news.Last updated2- Flicense-qualityCmaintenanceA Model Context Protocol server that enables users to automatically generate articles using large language models and publish them directly to Zhihu (a Chinese Q\&A platform).Last updated36
- AlicenseBqualityFmaintenanceOne-stop aggregation service of hot trends across the entire network based on the Model Context Protocol (MCP) protocol, supporting real-time updates and multi-data source expansion.Last updated212Apache 2.0
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
MCP server for AI dialogue using various LLM models via AceDataCloud
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wangtsiao/pulse-cn-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server