聚合55+平台热门榜单数据的AI工具,支持微博、知乎、B站、GitHub等平台。适用于LLM/RAG场景。
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"dailyhot": {
"args": [
"-y",
"@frank-x/dailyhot-mcp@latest"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
本项目发布在 MCP 注册表,支持以下客户端:
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in search / data
Web and local search using Brave Search API
Query and manage PostgreSQL databases directly from AI assistants
Production ready MCP server with real-time search, extract, map & crawl.
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for Dailyhotmcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
本项目发布在 [MCP 注册表](https://modelcontextprotocol.io registry),支持以下客户端:
在 OpenClaw 设置中添加 MCP 服务器配置:
{
"mcpServers": {
"dailyhot": {
"command": "npx",
"args": ["-y", "@frank-x/dailyhot-mcp@latest"]
}
}
}
重启后即可对话使用,支持 55+ 平台热门数据查询,如:
获取微博热搜榜前10条数据
获取 B 站热门视频
列出所有可用的平台
在 OpenCode 配置文件 opencode.json 中添加(参考 OpenCode MCP 配置):
{
"mcp": {
"dailyhot": {
"type": "local",
"command": ["npx", "-y", "@frank-x/dailyhot-mcp@latest"]
}
}
}
支持通过 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 的 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();
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 工具支持以下参数:
limit?: number - 限制返回数量noCache?: boolean - 跳过缓存,强制获取最新数据list_platforms - 获取所有可用平台列表(无参数)
返回数据包含 prompt 字段,指导大模型以友好格式展示结果。
项目支持 55+ 平台热门数据,可通过 MCP 工具或 npm 包调用。
所有平台都作为 MCP 工具注册,可通过 list_platforms 工具获取完整列表。
| 站点 | 类别 | 调用名称 | 站点 | 类别 | 调用名称 |
|---|---|---|---|---|---|
| 哔哩哔哩 | 热门榜 | bilibili | 知乎 | 热榜 | zhihu |
| 微博 | 热搜榜 | 知乎日报 | 推荐榜 | zhihu-daily | |
| 百度 | 热搜榜 | baidu | 抖音 | 热点榜 | douyin |
| 快手 | 热点榜 | kuaishou | 豆瓣电影 | 新片榜 | douban-movie |
| 豆瓣讨论小组 | 讨论精选 | douban-group | 百度贴吧 | 热议榜 | tieba |