MCP server intelligence profile

Trends Hub MCP Server

A MCP server that aggregates hot trends and rankings from various Chinese websites and platforms including Weibo, Zhihu, Bilibili, and more

Local Onlybaranwang
Awaiting current scanNpm · 1.7.0

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
20Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install mcp-trends-hub from npm

Version 1.7.0 declares 1 executable entrypoint.

npm install --save-exact mcp-trends-hub@1.7.0
npx -y -p mcp-trends-hub@1.7.0 mcp-trends-hub
MCP client configuration example
{
  "mcpServers": {
    "mcp-trends-hub": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "mcp-trends-hub@1.7.0",
        "mcp-trends-hub"
      ]
    }
  }
}

Identity

Canonical slugtrends-hub-20ea4882DeploymentLocal Only
Canonical packagenpm:mcp-trends-hubRepositorybaranwang/mcp-trends-hub
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmmcp-trends-hub1.7.013Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmmcp-trends-hub1.7.0CurrentSep 5, 202620 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
Trends HubServer-reported name
2Capability groups
Aug 15, 2026Observed

Tools 20

ToolCategoryAnnotationsRisk
get_36kr_trending获取 36 氪热榜,提供创业、商业、科技领域的热门资讯,包含投融资动态、新兴产业分析和商业模式创新信息
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "type": {
      "default": "hot",
      "description": "分类",
      "anyOf": [
        {
          "type": "string",
          "const": "hot",
          "description": "人气榜"
        },
        {
          "type": "string",
          "const": "video",
          "description": "视频榜"
        },
        {
          "type": "string",
          "const": "comment",
          "description": "热议榜"
        },
        {
          "type": "string",
          "const": "collect",
          "description": "收藏榜"
        }
      ]
    }
  },
  "required": [
    "type"
  ],
  "additionalProperties": false
}
get_9to5mac_news获取 9to5Mac 苹果相关新闻,包含苹果产品发布、iOS 更新、Mac 硬件、应用推荐及苹果公司动态的英文资讯
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
get_bbc_news获取 BBC 新闻,提供全球新闻、英国新闻、商业、政治、健康、教育、科技、娱乐等资讯
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "category": {
      "default": "",
      "anyOf": [
        {
          "type": "string",
          "const": "",
          "description": "热门新闻"
        },
        {
          "type": "string",
          "const": "world",
          "description": "国际"
        },
        {
          "type": "string",
          "const": "uk",
          "description": "英国"
        },
        {
          "type": "string",
          "const": "business",
          "description": "商业"
        },
        {
          "type": "string",
          "const": "politics",
          "description": "政治"
        },
        {
          "type": "string",
          "const": "health",
          "description": "健康"
        },
        {
          "type": "string",
          "const": "education",
          "description": "教育"
        },
        {
          "type": "string",
          "const": "science_and_environment",
          "description": "科学与环境"
        },
        {
          "type": "string",
          "const": "technology",
          "description": "科技"
        },
        {
          "type": "string",
          "const": "entertainment_and_arts",
          "description": "娱乐与艺术"
        }
      ]
    },
    "edition": {
      "default": "",
      "description": "版本,仅对 `category` 为空有效",
      "anyOf": [
        {
          "type": "string",
          "const": ""
        },
        {
          "type": "string",
          "const": "uk",
          "description": "UK"
        },
        {
          "type": "string",
          "const": "us",
          "description": "US & Canada"
        },
        {
          "type": "string",
          "const": "int",
          "description": "Rest of the world"
        }
      ]
    }
  },
  "required": [
    "category",
    "edition"
  ],
  "additionalProperties": false
}
get_bilibili_rank获取哔哩哔哩视频排行榜,包含全站、动画、音乐、游戏等多个分区的热门视频,反映当下年轻人的内容消费趋势
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "type": {
      "default": 0,
      "description": "排行榜分区",
      "anyOf": [
        {
          "type": "number",
          "const": 0,
          "description": "全站"
        },
        {
          "type": "number",
          "const": 1,
          "description": "动画"
        },
        {
          "type": "number",
          "const": 3,
          "description": "音乐"
        },
        {
          "type": "number",
          "const": 4,
          "description": "游戏"
        },
        {
          "type": "number",
          "const": 5,
          "description": "娱乐"
        },
        {
          "type": "number",
          "const": 188,
          "description": "科技"
        },
        {
          "type": "number",
          "const": 119,
          "description": "鬼畜"
        },
        {
          "type": "number",
          "const": 129,
          "description": "舞蹈"
        },
        {
          "type": "number",
          "const": 155,
          "description": "时尚"
        },
        {
          "type": "number",
          "const": 160,
          "description": "生活"
        },
        {
          "type": "number",
          "const": 168,
          "description": "国创相关"
        },
        {
          "type": "number",
          "const": 181,
          "description": "影视"
        }
      ]
    }
  },
  "required": [
    "type"
  ],
  "additionalProperties": false
}
get_douban_rank获取豆瓣实时热门榜单,提供当前热门的图书、电影、电视剧、综艺等作品信息,包含评分和热度数据
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "type": {
      "default": "subject",
      "anyOf": [
        {
          "type": "string",
          "const": "subject",
          "description": "图书、电影、电视剧、综艺等"
        },
        {
          "type": "string",
          "const": "movie",
          "description": "电影"
        },
        {
          "type": "string",
          "const": "tv",
          "description": "电视剧"
        }
      ]
    },
    "start": {
      "default": 0,
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991
    },
    "count": {
      "default": 10,
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "type",
    "start",
    "count"
  ],
  "additionalProperties": false
}
get_douyin_trending获取抖音热搜榜单,展示当下最热门的社会话题、娱乐事件、网络热点和流行趋势
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
get_gcores_new获取机核网游戏相关资讯,包含电子游戏评测、玩家文化、游戏开发和游戏周边产品的深度内容
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
get_ifanr_news获取爱范儿科技快讯,包含最新的科技产品、数码设备、互联网动态等前沿科技资讯
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "limit": {
      "default": 20,
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991
    },
    "offset": {
      "default": 0,
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "limit",
    "offset"
  ],
  "additionalProperties": false
}
get_infoq_news获取 InfoQ 技术资讯,包含软件开发、架构设计、云计算、AI等企业级技术内容和前沿开发者动态
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "region": {
      "default": "cn",
      "type": "string",
      "enum": [
        "cn",
        "global"
      ]
    }
  },
  "required": [
    "region"
  ],
  "additionalProperties": false
}
get_netease_news_trending获取网易新闻热点榜,包含时政要闻、社会事件、财经资讯、科技动态及娱乐体育的全方位中文新闻资讯
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
get_nytimes_news获取纽约时报新闻,包含国际政治、经济金融、社会文化、科学技术及艺术评论的高质量英文或中文国际新闻资讯
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "region": {
      "default": "cn",
      "anyOf": [
        {
          "type": "string",
          "const": "cn",
          "description": "中文"
        },
        {
          "type": "string",
          "const": "global",
          "description": "全球"
        }
      ]
    },
    "section": {
      "default": "HomePage",
      "description": "分类,当 `region` 为 `cn` 时无效。可选值: Africa, Americas, ArtandDesign, Arts, AsiaPacific, Automobiles, Baseball, Books/Review, Business, Climate, CollegeBasketball, CollegeFootball, Dance, Dealbook, DiningandWine, Economy, Education, EnergyEnvironment, Europe, FashionandStyle, Golf, Health, Hockey, HomePage, Jobs, Lens, MediaandAdvertising, MiddleEast, MostEmailed, MostShared, MostViewed, Movies, Music, NYRegion, Obituaries, PersonalTech, Politics, ProBasketball, ProFootball, RealEstate, Science, SmallBusiness, Soccer, Space, Sports, SundayBookReview, Sunday-Review, Technology, Television, Tennis, Theater, TMagazine, Travel, Upshot, US, Weddings, Well, World, YourMoney",
      "type": "string"
    }
  },
  "required": [
    "region",
    "section"
  ],
  "additionalProperties": false
}
get_smzdm_rank获取什么值得买热门,包含商品推荐、优惠信息、购物攻略、产品评测及消费经验分享的实用中文消费类资讯
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "unit": {
      "default": 1,
      "anyOf": [
        {
          "type": "number",
          "const": 1,
          "description": "今日热门"
        },
        {
          "type": "number",
          "const": 7,
          "description": "周热门"
        },
        {
          "type": "number",
          "const": 30,
          "description": "月热门"
        }
      ]
    }
  },
  "required": [
    "unit"
  ],
  "additionalProperties": false
}
get_sspai_rank获取少数派热榜,包含数码产品评测、软件应用推荐、生活方式指南及效率工作技巧的优质中文科技生活类内容
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "tag": {
      "default": "热门文章",
      "description": "分类",
      "type": "string",
      "enum": [
        "热门文章",
        "应用推荐",
        "生活方式",
        "效率技巧",
        "少数派播客"
      ]
    },
    "limit": {
      "default": 40,
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "tag",
    "limit"
  ],
  "additionalProperties": false
}
get_tencent_news_trending获取腾讯新闻热点榜,包含国内外时事、社会热点、财经资讯、娱乐动态及体育赛事的综合性中文新闻资讯
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "page_size": {
      "default": 20,
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "page_size"
  ],
  "additionalProperties": false
}
get_thepaper_trending获取澎湃新闻热榜,包含时政要闻、财经动态、社会事件、文化教育及深度报道的高质量中文新闻资讯
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
get_theverge_news获取 The Verge 新闻,包含科技创新、数码产品评测、互联网趋势及科技公司动态的英文科技资讯
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
get_toutiao_trending获取今日头条热榜,包含时政要闻、社会事件、国际新闻、科技发展及娱乐八卦等多领域的热门中文资讯
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
get_weibo_trending获取微博热搜榜,包含时事热点、社会现象、娱乐新闻、明星动态及网络热议话题的实时热门中文资讯
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
get_weread_rank获取微信读书排行榜,包含热门小说、畅销书籍、新书推荐及各类文学作品的阅读数据和排名信息
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "category": {
      "default": "rising",
      "description": "排行榜分区",
      "anyOf": [
        {
          "type": "string",
          "const": "rising",
          "description": "飙升榜"
        },
        {
          "type": "string",
          "const": "hot_search",
          "description": "热搜榜"
        },
        {
          "type": "string",
          "const": "newbook",
          "description": "新书榜"
        },
        {
          "type": "string",
          "const": "general_novel_rising",
          "description": "小说榜"
        },
        {
          "type": "string",
          "const": "all",
          "description": "总榜"
        }
      ]
    }
  },
  "required": [
    "category"
  ],
  "additionalProperties": false
}
get_zhihu_trending获取知乎热榜,包含时事热点、社会话题、科技动态、娱乐八卦等多领域的热门问答和讨论的中文资讯
Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "limit": {
      "default": 50,
      "type": "number"
    }
  },
  "required": [
    "limit"
  ],
  "additionalProperties": false
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Trends Hub MCP Server questions

How do I install Trends Hub MCP Server?

Install the selected package version with: npm install --save-exact mcp-trends-hub@1.7.0

What tools does Trends Hub MCP Server provide?

Trends Hub MCP Server exposed 20 tools during independent protocol observation, including get_36kr_trending, get_9to5mac_news, get_bbc_news, get_bilibili_rank, get_douban_rank, get_douyin_trending, get_gcores_new, get_ifanr_news, and others.

Is Trends Hub MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.