Token导航 LogoToken导航TokenDH.com
Pulse CN MCP Server logo
运维云端HTTP官方级别未说明来源级核验

Pulse CN MCP Server

MCP Server

Pulse CN MCP Server 是一个基于模型上下文协议(MCP)的服务器,提供来自中国互联网的实时趋势内容,适用于AI模型获取最新趋势数据。

工具数

0

提示词数

0

GitHub Stars

13

资源数

0
TypeScript实时数据云端部署

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

wangtsiao

提供方

wangtsiao

最后核验

2026/5/17 20:45

运行时

Node.js

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

npm install 或 bun install\"

详细介绍

🔥 Pulse CN MCP服务器

![License: MIT](https://opensource.org/licenses/MIT) ![TypeScript](https://www.typescriptlang.org/) ](https://smithery.ai/server/@wangtsiao/pulse-cn-mcp) ![PRs Welcome](http://makeapullrequest.com)

一个强大的模型上下文协议(MCP)服务器,提供来自中国互联网的实时趋势内容。

特性安装快速开始文档贡献许可证

🌟 概述

Pulse CN MCP Server使AI模型能够访问有关中国互联网趋势的最新信息。基于模型上下文协议(MCP)构建,它充当了人工智能模型和来自中国最受欢迎的社交媒体平台、新闻网站和内容聚合器的实时数据之间的桥梁。

✨ 特性

该服务器提供对来自18个主要中国平台的趋势数据的实时访问:

平台内容状态
🔮 星座运势每日星座预测
💬 每日一句励志英语每日励志英语语录
📊 热搜热榜聚合聚合趋势主题
🔥 微博实时热搜微博实时热门话题
📰 今日头条热搜今日头条新闻✅
📝 澎湃新闻热搜澎湃新闻热门话题
🏀 虎扑步行街热搜沪普BXJ实时动态🔜
知乎实时热搜知乎实时热门话题🔜
📔 知乎每日日报知乎日报🔜
💼 36氪24小时热榜36氪24小时热门商业新闻🔜
🎬 哔哩哔哩全站日榜Bilibili每日排名🔜
🔍 百度热点热榜百度热门话题🔜
📱 抖音热点热榜抖音热门话题🔜
👥 豆瓣小组精选豆瓣群特色内容🔜
💻 IT资讯热榜IT新闻热门话题🔜
📈 虎嗅网热榜虎秀24小时热门话题🔜
📱 产品经理热文榜Woshipm每日热门文章🔜
🐞 虫族部落最新热门崇布楼最新热门内容🔜

🚀 安装

# 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

⚡ 快速开始

使用以下命令启动MCP服务器:

# Using npm
npm start

# Or using Bun
bun start

这将使用Stdio传输启动服务器,使其为MCP兼容的AI模型连接做好准备。

📖 文档

建筑

Pulse CN MCP服务器采用模块化架构,每个数据源都有单独的工具:

src/
├── index.ts            # Main entry point and server setup
└── tools/              # Individual tool implementations
    ├── weiboHotspots.js
    ├── horoscope.js
    ├── dailyEnglishSentence.js
    ├── internetHotspotsAggregator.js
    ├── todayHeadlinesHotspots.js
    ├── paperNewsHotspots.js
    └── otherHotspots.js

可用工具

全面实施

工具名称描述端点
weibo-hotspots微博实时热门话题/weibo-hotspots
horoscope每日星座运势/horoscope
daily-english-sentence每日励志英语语录/daily-english-sentence
internet-hotspots-aggregator聚合趋势主题/internet-hotspots-aggregator
today-headlines-hotspots今天的头条新闻热门话题/today-headlines-hotspots
paper-news-hotspots澎湃新闻/paper-news-hotspots

即将推出

  • hupu-pedestrian-street-hotspots
  • zhihu-realtime-hotspots
  • zhihu-daily-hotspots
  • 36-krypton-24-hour-hotspots
  • bilibili-daily-hotspots
  • baidu-hotspots
  • douyin-hotspots
  • douban-group-hotspots
  • huxiu-hotspots
  • product-manager-hotspots
  • in-information-hotspots
  • insect-hotspots

集成示例

以下是如何使用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);
}

🛠️ 发展

添加新工具

  1. 在中创建新文件 src/tools/ (例如。, myNewTool.ts)
  2. 使用MCP服务器SDK实现您的工具
  3. 在中注册该工具 src/index.ts

例子:

// src/tools/myNewTool.ts
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { z } from "zod";

export function registerMyNewTool(server: McpServer) {
  server.tool(
    "my-new-tool",
    "Description of my new tool",
    {
      // Tool parameters schema
      param1: z.string().describe("Parameter description")
    },
    async (params) => {
      // Tool implementation
      return {
        content: [
          { type: "text", text: "Result of my tool" }
        ]
      };
    }
  );
}

// src/index.ts - Add import and registration
import { registerMyNewTool } from './tools/myNewTool.js';
// ...
registerMyNewTool(server);

🤝 贡献

欢迎投稿!请随时提交拉取请求。

  1. 分叉项目
  2. 创建功能分支(git checkout -b feature/amazing-feature)
  3. 提交您的更改(git commit -m 'Add some amazing feature')
  4. 推到分支(git push origin feature/amazing-feature)
  5. 打开拉取请求

📄 许可证

此项目根据MIT许可证获得许可-请参阅 许可证 文件以获取详细信息。

🙏 致谢

该项目利用了由提供的免费API 韩小韩API。我们衷心感谢他们的出色服务和支持。

______________________________________________________________________

Built with ❤️ by wangtsiao

目录标签

目录标签

TypeScript实时数据云端部署本地部署趋势分析社交媒体AI集成多平台聚合

接入字段

传输方式(transport,传输协议)

HTTP

鉴权方式(authType,认证方式)

none

运行时(runtime,运行环境)

Node.js

工具数量(toolCount,工具数)

0

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

HTTPnone部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP