CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Dailyhotmcp

frankxmx/dailyhotmcp
1authSTDIOregistry active
Summary

This server aggregates trending content from 55+ Chinese platforms including Weibo, Zhihu, Bilibili, Douyin, and GitHub into Claude. Each platform is exposed as a separate MCP tool (weibo, bilibili, zhihu, etc.) that accepts optional limit and noCache parameters to control result count and force fresh data. There's also a list_platforms tool to discover all available sources. It caches responses for 60 minutes by default and supports both stdio and HTTP+SSE transports. You'd reach for this when building LLM applications that need real-time awareness of trending topics across Chinese social media and tech platforms, or when you want Claude to answer questions about what's currently popular on specific services. The project includes Docker deployment and can run as a standalone HTTP server or npm package.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

今日热榜

一个聚合热门数据的 MCP 服务


GitHub stars GitHub forks npm version

特性

  • 支持 MCP 协议,可直接集成到 Claude Desktop、Cursor 等 AI 助手
  • 极快响应,便于开发
  • 支持 RSS 模式和 JSON 模式
  • 支持多种部署方式
  • 简明的路由目录,便于新增

快速开始

MCP 使用

本项目发布在 [MCP 注册表](https://modelcontextprotocol.io registry),支持以下客户端:

OpenClaw

在 OpenClaw 设置中添加 MCP 服务器配置:

{
  "mcpServers": {
    "dailyhot": {
      "command": "npx",
      "args": ["-y", "@frank-x/dailyhot-mcp@latest"]
    }
  }
}

重启后即可对话使用,支持 55+ 平台热门数据查询,如:

获取微博热搜榜前10条数据
获取 B 站热门视频
列出所有可用的平台

OpenCode

在 OpenCode 配置文件 opencode.json 中添加(参考 OpenCode MCP 配置):

{
  "mcp": {
    "dailyhot": {
      "type": "local",
      "command": ["npx", "-y", "@frank-x/dailyhot-mcp@latest"]
    }
  }
}

HTTP + SSE 模式

支持通过 HTTP 接口访问 MCP 服务。启动 HTTP 服务器后,配置客户端连接:

OpenCode Remote 配置:

{
  "mcp": {
    "dailyhot": {
      "type": "remote",
      "url": "http://localhost:3000/mcp",
      "enabled": true
    }
  }
}

注意:需要先启动 HTTP 服务器(见下文)。

Claude Desktop / Cursor 配置:

{
  "mcpServers": {
    "dailyhot-http": {
      "command": "npx",
      "args": ["-y", "@frank-x/dailyhot-mcp@latest", "--http"],
      "env": {
        "MCP_PORT": "3000"
      }
    }
  }
}

注意:Claude Desktop 默认仅支持 stdio 模式。部分客户端如 MCP Client、Windsurf 或自定义客户端可能支持 HTTP 连接。

启动 HTTP 服务器:

# 启动 HTTP 服务器(默认端口 3000)
npx @frank-x/dailyhot-mcp --http

# 或使用环境变量
MCP_HTTP=1 npx @frank-x/dailyhot-mcp

# 自定义端口
MCP_PORT=8080 npx @frank-x/dailyhot-mcp --http

HTTP 端点:

  • POST /mcp - 发送 JSON-RPC 请求
  • GET /mcp - SSE 长连接(接收服务端推送)
  • GET /health - 健康检查

其他 MCP 客户端

同样配置即可使用。

使用 SDK 连接 HTTP 模式

可以使用 MCP SDK 的 StreamableHTTPClientTransport 连接 HTTP 服务器:

import { Client } from "@modelcontextprotocol/sdk/client/index.js";
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js";

async function main() {
  const client = new Client(
    {
      name: "dailyhot-client",
      version: "1.0.0",
    },
    {
      capabilities: {},
    }
  );

  await client.connect(
    new StreamableHTTPClientTransport(new URL("http://localhost:3000/mcp"))
  );

  // 调用工具
  const result = await client.callTool({
    name: "weibo",
    arguments: { limit: 10 },
  });

  console.log(result);
}

main();

作为 npm 包使用

pnpm add @frank-x/dailyhot-mcp
import { main } from "@frank-x/dailyhot-mcp";

/**
 * 启动 MCP 服务(stdio 模式)
 * @returns {Promise<void>}
 */
main();

/**
 * 启动 MCP HTTP 服务
 * @param {number} port 端口号,默认 3000
 */
main({ port: 8080 });

MCP 工具说明

所有 MCP 工具支持以下参数:

  • limit?: number - 限制返回数量
  • noCache?: boolean - 跳过缓存,强制获取最新数据

list_platforms - 获取所有可用平台列表(无参数)

返回数据包含 prompt 字段,指导大模型以友好格式展示结果。

接口总览

项目支持 55+ 平台热门数据,可通过 MCP 工具或 npm 包调用。

MCP 工具

所有平台都作为 MCP 工具注册,可通过 list_platforms 工具获取完整列表。

查看支持的平台
站点类别调用名称站点类别调用名称
哔哩哔哩热门榜bilibili知乎热榜zhihu
微博热搜榜weibo知乎日报推荐榜zhihu-daily
百度热搜榜baidu抖音热点榜douyin
快手热点榜kuaishou豆瓣电影新片榜douban-movie
豆瓣讨论小组讨论精选douban-group百度贴吧热议榜tieba
少数派热榜sspaiIT之家热榜ithome
IT之家喜加一最新动态ithome-xijiayi简书热门推荐jianshu
果壳热门文章guokr澎湃新闻热榜thepaper
今日头条热榜toutiao36 氪热榜36kr
51CTO推荐榜51ctoCSDN排行榜csdn
NodeSeek最新动态nodeseek稀土掘金热榜juejin
腾讯新闻热点榜qq-news新浪网热榜sina
新浪新闻热点榜sina-news网易新闻热点榜netease-news
吾爱破解榜单52pojie全球主机交流榜单hostloc
虎嗅24小时huxiu酷安热榜coolapk
虎扑步行街热帖hupu爱范儿快讯ifanr
英雄联盟更新公告lol米游社最新消息miyoushe
原神最新消息genshin崩坏3最新动态honkai
崩坏星穹铁道最新动态starrail微信读书飙升榜weread
NGA热帖ngabbsV2EX主题榜v2ex
HelloGitHubTrendinghellogithub中央气象预警全国气象预警weatheralarm
中国地震台地震速报earthquake历史上的今天月-日history
AcFun排行榜acfunHacker News热榜hackernews
Product Hunt热榜producthunt纽约时报热榜nytimes
Linux.do热榜linuxdo游民星空热榜gameres
极客公园热榜geekpark什么值得买热榜smzdm
数码窝热榜dgtleYY热榜yystv
水木社区热榜newsmth

部署

Docker 部署

# 构建
docker build -t dailyhot-mcp .

# 运行
docker run --restart always -p 6688:6688 -d dailyhot-mcp
# 或使用 Docker Compose
docker-compose up -d

手动部署

git clone https://github.com/FrankXMX/dailyhotmcp.git
cd dailyhotmcp
pnpm install

复制 .env.example 为 .env 并修改配置。

开发

pnpm dev

编译运行

pnpm build
pnpm start

pm2 部署

pnpm i pm2 -g
pnpm build
sh ./deploy.sh

须知

  • 默认缓存 60 分钟,可在 .env 中修改 CACHE_TTL
  • 部分接口使用页面爬虫,若违反对应页面规则请联系移除

免责声明

  • 本项目服务仅供技术研究和开发测试使用
  • 获取的信息来自公开渠道,不对准确性作出承诺
  • 使用本项目产生的法律责任由使用者自行承担

鸣谢

  • RSSHub
  • DailyHotApi
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

YOUR_API_KEY*secret

Your API key for the service

Categories
AI & LLM ToolsDeveloper Tools
Registryactive
Package@frank-x/dailyhot-mcp
TransportSTDIO
AuthRequired
UpdatedMar 31, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f