Weibo Hot MCP server

Provides real-time access to Weibo trending topics through a TypeScript/Node.js server that delivers Chinese social media insights for conversation workflows requiring current information.
Back to servers
Setup instructions
Provider
Wang Tsiao
Release date
Mar 18, 2025
Language
TypeScript
Stats
6 stars

Pulse CN MCP Server is a powerful tool that provides AI models with real-time trending content from the Chinese internet. Acting as a bridge between AI systems and popular Chinese social media platforms, news sites, and content aggregators, it delivers up-to-date information through the Model Context Protocol (MCP).

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

Getting Started

Start the MCP server with:

# Using npm
npm start

# Or using Bun
bun start

This launches the server using the Stdio transport, making it ready for MCP-compatible AI models to connect.

Available Tools

Fully Implemented Tools

Pulse CN MCP Server provides access to the following platforms:

  • Weibo Hotspots - Real-time trending topics from Weibo
  • Horoscope - Daily horoscope predictions by zodiac sign
  • Daily English Sentence - Motivational English quotes
  • Internet Hotspots Aggregator - Aggregated trending topics
  • Today's Headlines Hotspots - Trending news from Today's Headlines
  • Paper News Hotspots - Trending topics from ThePaper.cn

Coming Soon

Several additional data sources are planned for future implementation, including:

  • Hupu BXJ real-time trends
  • Zhihu real-time trending topics
  • Zhihu daily digest
  • 36Kr 24-hour trending business news
  • Bilibili daily rankings
  • Baidu trending topics
  • And many more Chinese platforms

Using the Server

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);
}

Tool Reference

Weibo Hotspots

Endpoint: /weibo-hotspots Provides real-time trending topics from Weibo.

Horoscope

Endpoint: /horoscope Delivers daily horoscope predictions by zodiac sign.

Daily English Sentence

Endpoint: /daily-english-sentence Offers daily motivational English quotes.

Internet Hotspots Aggregator

Endpoint: /internet-hotspots-aggregator Aggregates trending topics from multiple sources.

Today's Headlines Hotspots

Endpoint: /today-headlines-hotspots Returns trending topics from Today's Headlines.

Paper News Hotspots

Endpoint: /paper-news-hotspots Provides trending news from ThePaper.cn.

How to install this MCP server

For Claude Code

To add this MCP server to Claude Code, run this command in your terminal:

claude mcp add-json "weibo-hotspots" '{"command":"npx","args":["-y","@wangtsiao/pulse-cn-mcp"]}'

See the official Claude Code MCP documentation for more details.

For Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "weibo-hotspots": {
            "command": "npx",
            "args": [
                "-y",
                "@wangtsiao/pulse-cn-mcp"
            ]
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

2. Add this to your configuration file:

{
    "mcpServers": {
        "weibo-hotspots": {
            "command": "npx",
            "args": [
                "-y",
                "@wangtsiao/pulse-cn-mcp"
            ]
        }
    }
}

3. Restart Claude Desktop for the changes to take effect

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later