Skip to main content
Glama
wangtsiao

Pulse CN MCP Server

by wangtsiao

🔥 Pulse CN MCP サーバー

ライセンス: MIT タイプスクリプト 鍛冶屋のバッジ PR歓迎

中国のインターネットからリアルタイムのトレンドコンテンツを提供する強力なモデルコンテキストプロトコル (MCP) サーバー。

機能インストールクイックスタートドキュメント貢献ライセンス

🌟 概要

Pulse CN MCPサーバーは、AIモデルが中国のインターネット上のトレンドに関する最新情報にアクセスできるようにします。モデルコンテキストプロトコル(MCP)に基づいて構築されており、中国で最も人気のあるソーシャルメディアプラットフォーム、ニュースサイト、コンテンツアグリゲータからのリアルタイムデータとAIモデル間の橋渡しとして機能します。

Related MCP server: Weibo MCP Server

✨ 特徴

サーバーは、18 の主要な中国プラットフォームからのトレンド データへのリアルタイム アクセスを提供します。

プラットフォーム

コンテンツ

状態

🔮星座旅行

毎日の星占い予測

💬毎日一句励志英語

毎日のモチベーションを高める英語の名言

📊熱搜熱榜結合

トレンドトピックの集約

🔥微博的時熱搜

Weiboリアルタイムトレンドトピック

📰今日头条熱搜

今日のヘッドライントレンドニュース

📝澎湃ニュースホットライン

ThePaper.cnニューストレンドトピック

🏀虎扑步行街熱搜

Hupu BXJリアルタイムトレンド

🔜

リアルタイム熱搜を知る

Zhihuリアルタイムトレンドトピック

🔜

📔毎日報を知る

知乎日刊ダイジェスト

🔜

💼 36℃ 24時間熱湯

36Kr 24時間トレンドビジネスニュース

🔜

🎬哔哩哔哩全站日榜

ビリビリデイリーランキング

🔜

🔍百度熱点熱榜

百度のトレンドトピック

🔜

📱抖音热点热榜

Douyinのトレンドトピック

🔜

👥豆瓣小組精選

Doubanグループの注目コンテンツ

🔜

💻 IT资讯熱榜

ITニュースのトレンドトピック

🔜

📈虎嗅網热榜

Huxiu 24時間トレンドトピック

🔜

📱製品の理性的なホットテキスト

Woshipm毎日人気記事

🔜

🐞虫族部落最新热门

Chongbuluoの最新の人気コンテンツ

🔜

🚀 インストール

# 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のリアルタイムトレンドトピック

/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

ThePaper.cnのトレンドニュース

/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 Server 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 ライセンスに基づいてライセンスされています - 詳細についてはLICENSEファイルを参照してください。

🙏 謝辞

このプロジェクトは、韩小韩APIが提供する無料APIを利用しています。彼らの素晴らしいサービスとサポートに心から感謝いたします。


-
security - not tested
F
license - not found
-
quality - not tested

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/wangtsiao/pulse-cn-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server