Skip to main content
Glama

Pulse CN MCP Server

by wangtsiao

🔥 Pulse CN MCP 서버

중국 인터넷의 실시간 트렌드 콘텐츠를 제공하는 강력한 모델 컨텍스트 프로토콜(MCP) 서버입니다.

기능설치빠른 시작문서기여라이센스

🌟 개요

Pulse CN MCP 서버는 AI 모델이 중국 인터넷 트렌드에 대한 최신 정보에 접근할 수 있도록 지원합니다. 모델 컨텍스트 프로토콜(MCP) 기반으로 구축된 이 서버는 AI 모델과 중국에서 가장 인기 있는 소셜 미디어 플랫폼, 뉴스 사이트, 콘텐츠 수집 사이트의 실시간 데이터를 연결하는 다리 역할을 합니다.

✨ 특징

이 서버는 18개 주요 중국 플랫폼의 추세 데이터에 대한 실시간 액세스를 제공합니다.

플랫폼콘텐츠상태
🔮 성좌 이동일일 운세 예측
💬 엄마는 하루 종일 영어를 가르쳤다매일의 동기부여 영어 명언
📊 열정 열광 인터뷰집계된 트렌드 주제
🔥 실제 시간 열기웨이보 실시간 트렌드 주제
📰 오늘의 머리끈 열기오늘의 헤드라인 트렌드 뉴스
📝 욕 뉴스 열기ThePaper.cn 뉴스 트렌드 주제
🏀 호박타기 이륙 준비 열광후푸 BXJ 실시간 트렌드🔜
실제 시간 더위 조심하세요지후 실시간 트렌드 주제🔜
📔 알아두세요 엄마날짜지후 일일 다이제스트🔜
💼 36℃ 24시간 더위36Kr 24시간 트렌드 비즈니스 뉴스🔜
🎬哔哩哔哩 전체 사이트 일화빌리빌리 일일 순위🔜
🔍 백도 폭염 점폭염 사진바이두 트렌드 주제🔜
📱 음성 열점 열풍Douyin 트렌드 주제🔜
👥豆瓣소형 정선두반그룹 특집 콘텐츠🔜
💻 IT에 대한 열정IT 뉴스 트렌드 주제🔜
📈 호미르넷열정후슈 24시간 트렌드 주제🔜
📱 제품 관리 열문서Woshipm 일간 인기기사🔜
🐞 호랑이부대 최신 열문Chongbuluo 최신 인기 콘텐츠🔜

🚀 설치

지엑스피1

⚡ 빠른 시작

다음을 사용하여 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-hotspotsWeibo의 실시간 트렌드 주제/weibo-hotspots
horoscope별자리별 일일 운세/horoscope
daily-english-sentence매일의 동기부여 영어 명언/daily-english-sentence
internet-hotspots-aggregator집계된 트렌드 주제/internet-hotspots-aggregator
today-headlines-hotspots오늘의 헤드라인 트렌드 주제/today-headlines-hotspots
paper-news-hotspotsThePaper.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 라이선스에 따라 라이선스가 부여되었습니다. 자세한 내용은 라이선스 파일을 참조하세요.

🙏 감사의 말

이 프로젝트는韩小韩API 에서 제공하는 무료 API를 활용합니다. 韩小韩API의 훌륭한 서비스와 지원에 진심으로 감사드립니다.


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

Weibo, Zhihu, Bilibili 등 중국 주요 인터넷 플랫폼 18개에서 실시간 트렌드 콘텐츠를 AI 모델에 제공하는 모델 컨텍스트 프로토콜 서버입니다.

  1. 🌟 개요
    1. ✨ 특징
      1. 🚀 설치
        1. ⚡ 빠른 시작
          1. 📖 문서
            1. 건축학
            2. 사용 가능한 도구
            3. 통합 예제
          2. 🛠️ 개발
            1. 새 도구 추가
          3. 🤝 기여하기
            1. 📄 라이센스
              1. 🙏 감사의 말

                Related MCP Servers

                • A
                  security
                  F
                  license
                  A
                  quality
                  A Model Context Protocol server that provides real-time hot trending topics from major Chinese social platforms and news sites.
                  Last updated -
                  1
                  940
                  46
                • -
                  security
                  A
                  license
                  -
                  quality
                  A Model Context Protocol server that enables AI assistants like Claude to browse and analyze Reddit content, including searching subreddits, retrieving post details with comments, and viewing trending posts.
                  Last updated -
                  1
                  Python
                  MIT License
                  • Apple
                • A
                  security
                  A
                  license
                  A
                  quality
                  A Model Context Protocol server that enables AI models to perform real-time internet and knowledge searches through Higress, enhancing model responses with up-to-date information from Google, Bing, Arxiv, and internal knowledge bases.
                  Last updated -
                  1
                  5
                  Python
                  Apache 2.0
                • -
                  security
                  A
                  license
                  -
                  quality
                  A Model Context Protocol server that enables AI to interact with Twitter, allowing functions like searching tweets, comparing sentiments across accounts, and retrieving timeline content.
                  Last updated -
                  MIT License

                View all related MCP servers

                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