INDIVIDUAL MCP TOOL
get_archive
获取历史某天的热搜归档。 Args: date: 日期 (YYYY-MM-DD 格式) platform: 平台 ID (可选) limit: 每个平台返回条数 (默认30) Returns: 该日期的热搜汇总
LIVE ENDPOINT
https://hotflashnews.com/mcp
Connect to this endpoint to inspect the live schema for get_archive and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.hotflashnews]
url = "https://hotflashnews.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"hotflashnews": {
"type": "http",
"url": "https://hotflashnews.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: hotflashnews
Remote MCP URL: https://hotflashnews.com/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"hotflashnews": {
"url": "https://hotflashnews.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"hotflashnews": {
"type": "http",
"url": "https://hotflashnews.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "hotflashnews",
"transport": "streamable-http",
"url": "https://hotflashnews.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
get_trending— 获取全网实时热搜榜单。 Args: platform: 平台 ID (weibo/baidu/zhihu/douyin/bilibili/toutiao/36kr/ithome/thepaper/tieba/cls),不传则返回所有平台 limit: 每个平台返回条数 (默认20, 最大50) Returns: 纯文本格式的热搜列表get_voice_briefing— 获取适合小智 AI 语音终端直接朗读的最新快讯短稿。 当用户说“播报快讯”“播报热搜”“现在有什么热点”时优先使用本工具。 返回 JSON,其中 speak_text 是应该朗读给用户的内容;不要朗读 latest_event_id。 Args: platform: 平台 ID,可选。例如 weibo/baidu/zhihu/douyin/36kr/jin10;不传则跨平台选取重点快讯 limit: 播报条数,默认 5,最大 8。为避免小智超时和 1024 字节限制,不要请求过多 Returns: 包含 speak_text、item_count、latest_event_id 的 JSONget_realtime_voice_updates— 获取指定 event_id 之后的新增快讯,适合小智 AI 定时轮询后连续播报。 当用户问“有没有新快讯”“继续播报新消息”时使用本工具。 调用方应保存返回的 latest_event_id,下次作为 after_event_id 传入,避免重复播报。 返回 JSON,其中 speak_text 是应该朗读给用户的内容;不要朗读 latest_event_id。 Args: after_event_id: 上次返回的 latest_event_id;第一次调用可传 0 limit: 最多播报条数,默认 5,最大 8 platform: 平台 ID,可选;指定后只播该平台新增快讯 Returns: 包含 speak_text、latest_event_id、has_more 的 JSONsearch_trending— 在热搜中搜索包含关键词的新闻。 Args: keyword: 搜索关键词 platform: 平台 ID (可选, 只在指定平台搜索) Returns: 匹配的热搜列表list_platforms— 列出所有支持查询的热搜平台。 Returns: 平台列表 (ID + 中文名)