TrendRadar
MCP ServerFree⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。
Capabilities13 decomposed
multi-platform trending topic aggregation with unified feed normalization
Medium confidenceCrawls 11+ Chinese social platforms (Zhihu, Weibo, Bilibili, Douyin, etc.) and RSS feeds simultaneously, normalizing heterogeneous data schemas into a unified NewsItem model with platform-agnostic metadata. Uses platform-specific adapters that extract title, URL, hotness rank, and engagement metrics, then merges results into a single deduplicated feed ordered by composite hotness score (rank × 0.6 + frequency × 0.3 + platform_hot_value × 0.1).
Implements platform-specific adapter pattern with 11+ crawlers (Zhihu, Weibo, Bilibili, Douyin, etc.) plus RSS support, normalizing heterogeneous schemas into unified NewsItem model with composite hotness scoring (rank × 0.6 + frequency × 0.3 + platform_hot_value × 0.1) rather than simple ranking
Covers more Chinese platforms than generic news aggregators (Feedly, Inoreader) and uses weighted composite scoring instead of single-metric ranking, making it superior for investors tracking multi-platform sentiment
keyword-based content filtering with regex and logical operators
Medium confidenceFilters aggregated news against user-defined keyword lists (frequency_words.txt) using regex pattern matching and boolean logic (required keywords AND, excluded keywords NOT). Implements a scoring engine that weights matches by keyword frequency tier and calculates relevance scores. Supports regex patterns, case-insensitive matching, and multi-language keyword sets. Articles matching filter criteria are retained; non-matching articles are discarded before analysis and notification stages.
Implements multi-tier keyword frequency weighting (high/medium/low priority keywords) with regex pattern support and boolean AND/NOT logic, scoring articles by keyword match density rather than simple presence/absence checks
More flexible than simple keyword whitelisting (supports regex and exclusion rules) but simpler than ML-based relevance ranking, making it suitable for rule-driven curation without ML infrastructure
real-time new topic detection with 🆕 markers and trend velocity calculation
Medium confidenceDetects newly trending topics by comparing current aggregated feed against historical baseline (previous execution results). Marks new topics with 🆕 emoji and calculates trend velocity (rate of rank change) to identify rapidly rising topics. Implements configurable sensitivity thresholds to distinguish genuine new trends from noise. Stores historical snapshots to enable trend trajectory analysis and prediction.
Implements new topic detection by comparing current feed against historical baseline with configurable sensitivity thresholds. Calculates trend velocity (rank change rate) to identify rapidly rising topics and marks new trends with 🆕 emoji. Stores historical snapshots for trend trajectory analysis.
More sophisticated than simple rank-based detection because it considers trend velocity and historical context; more practical than ML-based anomaly detection because it uses simple thresholding without model training; enables early-stage trend detection vs. mainstream coverage
multi-region display configuration with platform-specific content filtering
Medium confidenceSupports region-specific content filtering and display preferences (e.g., show only Mainland China trends, exclude Hong Kong/Taiwan content, or vice versa). Implements per-region keyword lists and notification channel routing (e.g., send Mainland China trends to WeChat, international trends to Telegram). Allows users to configure multiple region profiles and switch between them based on monitoring focus.
Implements region-specific content filtering with per-region keyword lists and channel routing. Supports multiple region profiles (Mainland China, Hong Kong, Taiwan, international) with independent keyword configurations and notification channel assignments.
More flexible than single-region solutions because it supports multiple geographic markets simultaneously; more practical than manual region filtering because it automates routing based on platform metadata; enables region-specific monitoring vs. global aggregation
execution mode abstraction supporting github actions, docker, and local python deployment
Medium confidenceAbstracts deployment environment differences through unified execution mode interface. Detects runtime environment (GitHub Actions, Docker container, local Python) and applies mode-specific configuration (storage backend, notification channels, scheduling mechanism). Supports seamless migration between deployment modes without code changes. Implements environment-specific error handling and logging (e.g., GitHub Actions annotations for CI/CD visibility).
Implements execution mode abstraction detecting GitHub Actions, Docker, and local Python environments with automatic configuration switching. Applies mode-specific optimizations (storage backend, scheduling, logging) without code changes.
More flexible than single-mode solutions because it supports multiple deployment options; more maintainable than separate codebases because it uses unified codebase with mode-specific configuration; more user-friendly than manual mode configuration because it auto-detects environment
ai-powered news analysis and summarization via litellm multi-provider abstraction
Medium confidenceSends filtered news articles to LiteLLM, which abstracts over multiple LLM providers (OpenAI, Anthropic, Ollama, local models, etc.) to generate structured analysis including sentiment classification, key entity extraction, trend prediction, and executive summaries. Uses configurable system prompts and temperature settings per provider. Results are cached to avoid redundant API calls and formatted as structured JSON for downstream processing and notification delivery.
Uses LiteLLM abstraction layer to support 50+ LLM providers (OpenAI, Anthropic, Ollama, local models, etc.) with unified interface, allowing provider switching via config without code changes. Implements in-memory result caching and structured JSON output parsing with fallback to raw text.
More flexible than single-provider solutions (e.g., direct OpenAI API) because it supports cost-effective provider switching and local model fallback; more robust than custom provider integration because LiteLLM handles retries and error handling
ai-powered multilingual translation with provider fallback
Medium confidenceTranslates article titles and summaries from Chinese to English (or other target languages) using LiteLLM-abstracted LLM providers with automatic fallback to alternative providers if primary provider fails. Maintains translation cache to avoid redundant API calls for identical content. Supports batch translation of multiple articles in single API call to reduce latency and cost. Integrates with notification system to deliver translated content to non-Chinese-speaking users.
Implements LiteLLM-based translation with automatic provider fallback and in-memory caching, supporting batch translation of multiple articles per API call to optimize latency and cost. Integrates seamlessly with multi-channel notification system for language-specific delivery.
More cost-effective than dedicated translation APIs (Google Translate, DeepL) when using cheaper LLM providers; supports automatic fallback unlike single-provider solutions; batch processing reduces per-article cost vs. sequential translation
multi-channel notification delivery with atomic message batching
Medium confidenceDistributes filtered and analyzed news to 9+ notification channels (WeChat, WeWork, Feishu, Telegram, Email, ntfy, Bark, Slack, etc.) using channel-specific adapters. Implements atomic message batching to group multiple articles into single notification payloads, respecting per-channel rate limits and message size constraints. Supports channel-specific formatting (Markdown for Slack, card format for WeWork, plain text for Email). Includes retry logic with exponential backoff for failed deliveries and delivery status tracking.
Implements channel-specific adapter pattern for 9+ notification platforms with atomic message batching that respects per-channel rate limits and message size constraints. Supports heterogeneous formatting (Markdown for Slack, card format for WeWork, plain text for Email) from single article payload.
More comprehensive than single-channel solutions (e.g., email-only) and more flexible than generic webhook systems because it handles platform-specific formatting and rate limiting automatically; atomic batching reduces notification fatigue vs. per-article delivery
model context protocol (mcp) server for conversational trend analysis and querying
Medium confidenceExposes TrendRadar's aggregated news and analysis data as an MCP server with tool definitions for natural language queries. Allows AI agents and LLM-based applications to query trending topics, filter by keywords, retrieve sentiment analysis, and generate trend reports via conversational interface. Implements tools like 'analyze_trends', 'get_trending_topics', 'search_by_keyword' that accept natural language parameters and return structured JSON responses. Integrates with Claude and other MCP-compatible clients for seamless agent-based analysis.
Implements MCP server with tool definitions for trend analysis (analyze_trends, get_trending_topics, search_by_keyword) allowing conversational querying of aggregated news data. Integrates with Claude and MCP-compatible clients for agent-based workflow integration without custom API development.
More flexible than REST API because it supports natural language parameter extraction via LLM; more standardized than custom webhook systems because it uses MCP protocol for client compatibility; enables agent-based automation vs. manual querying
scheduled execution with timeline-based configuration and github actions integration
Medium confidenceOrchestrates periodic execution of the entire news aggregation and analysis pipeline using Python scheduler (APScheduler or similar) configured via timeline.yaml. Supports multiple execution schedules (e.g., hourly for stock monitoring, daily for general trends) with timezone awareness. Integrates with GitHub Actions for cloud-based scheduling without local infrastructure, storing results in cloud storage (S3, GitHub Releases, etc.). Implements graceful shutdown and error recovery to ensure reliable scheduled execution.
Implements dual scheduling support: local APScheduler for Docker/Python deployments with timezone-aware cron expressions, and GitHub Actions integration for serverless cloud execution with results stored in S3/GitHub Releases. Supports multiple concurrent schedules for different monitoring use cases.
More flexible than simple cron jobs because it supports multiple schedules and timezone awareness; more cost-effective than dedicated monitoring services because it leverages free GitHub Actions tier; more reliable than manual execution because it includes error recovery and retry logic
local and cloud storage abstraction with multi-backend support
Medium confidenceProvides unified storage interface supporting multiple backends: local filesystem (Docker volumes, mounted directories), cloud storage (S3, GitHub Releases, Alibaba OSS), and database storage (SQLite, PostgreSQL). Implements automatic data persistence for aggregated news, analysis results, and execution logs. Supports both streaming writes (for real-time updates) and batch writes (for periodic reports). Includes data retention policies and automatic cleanup of old data based on configurable TTL.
Implements storage abstraction layer supporting local filesystem (Docker volumes), cloud storage (S3, GitHub Releases, Alibaba OSS), and databases (SQLite, PostgreSQL) with unified interface. Includes automatic data retention policies with TTL-based cleanup and supports both streaming and batch writes.
More flexible than single-backend solutions because it supports local and cloud storage without code changes; more cost-effective than dedicated data warehouses because it uses cheap object storage; more reliable than in-memory storage because it persists data across restarts
docker containerization with orchestrated multi-service deployment
Medium confidencePackages TrendRadar as Docker image with docker-compose orchestration for multi-service deployment including news crawler, AI analysis service, notification service, and optional MCP server. Implements health checks, automatic restart policies, and volume mounts for persistent storage. Supports environment variable configuration for secrets management (API keys, credentials). Includes pre-built images for common deployment scenarios (GitHub Actions, local Docker, cloud platforms).
Implements multi-service Docker orchestration with docker-compose for crawler, analyzer, notifier, and optional MCP server. Includes health checks, automatic restart policies, volume mounts for persistent storage, and environment variable-based configuration for secrets management.
More comprehensive than single-container solutions because it orchestrates multiple services; more portable than bare-metal Python because it eliminates dependency conflicts; more flexible than cloud-specific deployments because it works on any Docker-compatible platform
visual configuration editor with real-time validation and preview
Medium confidenceProvides web-based UI for editing configuration files (config.yaml, frequency_words.txt, timeline.yaml) with real-time validation, syntax highlighting, and preview of filter results. Implements live keyword filter testing against sample articles to show matching results before deployment. Supports configuration versioning and rollback to previous versions. Integrates with main application to apply configuration changes without restart (hot-reload for certain settings).
Implements web-based configuration editor with real-time YAML validation, syntax highlighting, and live keyword filter testing against sample articles. Supports configuration versioning and rollback with optional hot-reload for non-critical settings.
More user-friendly than manual YAML editing because it provides UI and validation; more powerful than simple form-based config because it supports complex regex patterns and boolean logic; more reliable than direct file editing because it validates syntax before saving
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with TrendRadar, ranked by overlap. Discovered automatically through the match graph.
TrendRadar
⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。
Uptrends.ai
The first AI stock market news monitoring platform made for DIY investors. Uptrends.ai analyzes chatter to help you find the trends & events that...
Desearch
Decentralized AI search for real time X Twitter and Web...
Tweetfox
AI-enhanced Twitter automation for effortless content creation and...
You.com
A search engine built on AI that provides users with a customized search experience while keeping their data 100% private.
Postwise
Write tweets, schedule posts and grow your following using AI.
Best For
- ✓Investors and traders monitoring stock-related news across multiple platforms
- ✓Content creators tracking trending topics for viral content opportunities
- ✓PR professionals and brand managers monitoring public sentiment in real-time
- ✓Investors with specific stock/sector watchlists
- ✓Brand managers monitoring specific product categories or competitor mentions
- ✓Content creators tracking niche topics without general news noise
- ✓Investors wanting early-stage trend detection for trading signals
- ✓Content creators seeking emerging topics before mainstream coverage
Known Limitations
- ⚠Platform-specific crawlers may break if target platforms change HTML structure or API endpoints without notice
- ⚠RSS feed reliability depends on feed provider uptime and update frequency
- ⚠Deduplication uses fuzzy title matching which may miss semantically identical but textually different articles
- ⚠Rate limiting on source platforms may cause incomplete data collection during high-traffic periods
- ⚠Regex-based matching is language-agnostic but may miss semantic synonyms (e.g., 'EV' vs. '电动车')
- ⚠Boolean logic is AND/NOT only; no OR operator for alternative keywords in single rule
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
Repository Details
Last commit: Apr 18, 2026
About
⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。
Categories
Alternatives to TrendRadar
The first "code-first" agent framework for seamlessly planning and executing data analytics tasks.
Compare →Are you the builder of TrendRadar?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →