news-volume-mcp
news-volume-mcp
ニュース言及数をMCPツールとして提供します。Claude、Cursor、またはMCP互換のAIホストに組み込めます。週次シリーズ、成長率、そしてライブGoogleニュースフィード。
提供元: trendsmcp.ai — 1つのAPIキー、1つのクライアントで30以上のデータソース: Google Search, YouTube, TikTok, Reddit, Amazon, Wikipedia, App Store, Steam, npm, ニュース言及数, ニュースセンチメント, ライブトレンドフィードなど。プラットフォームごとに別の認証情報は不要です。
無料のAPIキーを取得 → trendsmcp.ai — 月100リクエスト無料、クレジットカード不要。
📖 完全なAPIドキュメント → trendsmcp.ai/docs
2026年対応。Python 3.8から3.13で動作。
MCPツールとして使用
mcp.jsonに追加(Claude Desktop, Cursor, Windsurf, VS Code, または任意のMCPホスト):
{
"mcpServers": {
"trends-mcp": {
"url": "https://api.trendsmcp.ai/mcp",
"transport": "http",
"headers": { "Authorization": "Bearer YOUR_API_KEY" }
}
}
}無料のキーを trendsmcp.ai で取得。Claude, Cursor, Windsurf, VS Codeの完全なセットアップ手順は trendsmcp.ai/docs を参照。
Related MCP server: news-volume-mcp
スクレイピング不要。429エラーなし。プロキシ不要。
以前にpytrendsや同様のスクレイパーを使ったことがあるなら、問題点はご存知でしょう: ランダムな429 Too Many Requestsブロック、午前2時のパイプライン停止、time.sleep()ハック、プロキシローテーションのコスト、そしてGoogleがプロトコルレベルでスクレイパーを明示的にフラグするため現在アーカイブされているライブラリ。
trendsmcpはマネージドな代替手段です。私たちがデータインフラを運用し、あなたはRESTエンドポイントを呼び出すだけです。
News Volumeデータのpytrends代替
スクレイパー / pytrends | trendsmcp | |
429レート制限エラー | 常に | なし |
プロキシが必要 | 頻繁に | なし |
プラットフォーム変更で停止 | はい、定期的に | いいえ |
カバーするデータソース | 1(Googleのみ) | 30以上 |
絶対的なボリューム推定 | いいえ | はい |
クロスプラットフォームの成長 | いいえ | はい |
非同期サポート | いいえ | はい |
積極的にメンテナンス | いいえ(アーカイブ済み) | はい |
無料枠 | いいえ | はい、月100リクエスト |
インストール
pip install news-volume-mcpシステム依存関係なし。Python 3.8以上。内部でhttpxを使用。
クイックスタート
from news_volume_mcp import TrendsMcpClient, SOURCE
client = TrendsMcpClient(api_key="YOUR_API_KEY")
# 5-year weekly time series — no sleep(), no proxies, no 429s
series = client.get_trends(source=SOURCE, keyword="climate change")
print(series[0])
# TrendsDataPoint(date='2026-03-28', value=72, keyword='climate change', source='news volume')
# Period-over-period growth
growth = client.get_growth(
source=SOURCE,
keyword="climate change",
percent_growth=["3M", "1Y"],
)
print(growth.results[0])
# GrowthResult(period='3M', growth=14.5, direction='increase', ...)
# What's trending right now (across all live platforms)
trending = client.get_top_trends(limit=10)
print(trending.data)
# [[1, 'topic one'], [2, 'topic two'], ...]非同期サポート
import asyncio
from news_volume_mcp import AsyncTrendsMcpClient, SOURCE
async def main():
client = AsyncTrendsMcpClient(api_key="YOUR_API_KEY")
series = await client.get_trends(source=SOURCE, keyword="climate change")
print(series[0])
asyncio.run(main())1つのキーで複数のプラットフォームを同時にクエリ:
google, youtube, reddit, amazon, tiktok = await asyncio.gather(
client.get_trends(source="google search", keyword="climate change"),
client.get_trends(source="youtube", keyword="climate change"),
client.get_trends(source="reddit", keyword="climate change"),
client.get_trends(source="amazon", keyword="climate change"),
client.get_trends(source="tiktok", keyword="climate change"),
)ユースケース
SEOリサーチ: コンテンツ公開前にGoogle Search、Google News、Google Images全体のキーワード検索ボリュームトレンドを追跡
マーケットリサーチ: 製品カテゴリに参入する前にAmazonとGoogle Shoppingでの消費者需要シグナルを測定
投資リサーチ: 先行指標としてRedditの議論ボリューム、ニュースセンチメント、Wikipediaページビューのスパイクを監視
コンテンツ戦略: トピックがピークに達し競合が飽和する前にYouTubeとTikTokで成長しているものを発見
競合トラッキング: カスタム日付範囲でプラットフォーム間のブランド検索ボリューム成長を比較
アプリアナリティクス: Redditやニュースの話題と共にApp Storeの関心とアプリアンインストール推定を追跡
連携可能
Claude (MCP経由 — trendsmcp.ai/docs)
Cursor (MCP経由 — trendsmcp.ai/docs)
ChatGPT (MCP経由 — trendsmcp.ai/docs)
Windsurf (MCP経由 — trendsmcp.ai/docs)
VS Code Copilot (MCP経由 — trendsmcp.ai/docs)
LangChain:
TrendsMcpClientの出力をツール結果やコンテキストとして直接渡すCrewAI: 任意のメソッドを
Toolとしてラップしてクルーに組み込むAutoGen: 任意のエージェントの呼び出し可能ツールとして登録
LlamaIndex: トレンドシリーズを構造化データノードとして検索に使用
Pandas: 各
get_trends()の応答を1行でDataFrameに変換
メソッド
get_trends(source, keyword, data_mode=None)
キーワードの過去の時系列データを返します。デフォルトは5年間の週次データ。data_mode="daily"を渡すと、過去30日間の日次粒度で取得。
get_growth(source, keyword, percent_growth, data_mode=None)
2時点間のパーセンテージ成長を計算します。プリセット文字列またはCustomGrowthPeriodオブジェクトを渡します。
成長プリセット: 7D 14D 30D 1M 2M 3M 6M 9M 12M 1Y 18M 24M 2Y 36M 3Y 48M 60M 5Y MTD QTD YTD
get_top_trends(type=None, limit=None)
今日のライブトレンドアイテムを返します。typeを省略すると全フィードを一度に取得。
利用可能なライブフィード: Google Trends Google News Top News YouTube Trending TikTok Trending Hashtags X (Twitter) Trending Reddit Hot Posts Reddit World News Wikipedia Trending Amazon Best Sellers Top Rated Amazon Best Sellers by Category App Store Top Free App Store Top Paid Google Play Spotify Top Podcasts Top Websites
全30以上のデータソース
1つのAPIキー。1つのクライアント。すべてのプラットフォーム。個別の認証情報は不要。
source | 測定内容 |
| Google Searchの検索ボリューム |
| Google Imagesの検索ボリューム |
| Google Newsの検索ボリューム |
| Google Shoppingの購入意図 |
| YouTubeの検索ボリューム |
| TikTokのハッシュタグボリューム |
| Redditのサブレディット購読者数の推移 |
| Amazonの商品検索ボリューム |
| Wikipediaのページビュー |
| ニュース記事の言及数 |
| ニュースセンチメントスコア(ポジティブ/ネガティブ) |
| モバイルアプリのダウンロード/インストール推定数(Android) |
| npmパッケージの週間ダウンロード数 |
| Steamの同時プレイヤー数 |
すべての値は0〜100に正規化されているため、プラットフォーム間で直接比較できます。
エラーハンドリング
from news_volume_mcp import TrendsMcpClient, TrendsMcpError, SOURCE
client = TrendsMcpClient(api_key="YOUR_API_KEY")
try:
series = client.get_trends(source=SOURCE, keyword="climate change")
except TrendsMcpError as e:
print(e.status) # e.g. 429 if you exceed your plan quota
print(e.code) # e.g. "rate_limited"
print(e.message)よくある質問
これはNews Volumeをスクレイピングしますか? いいえ。trendsmcpはマネージドデータインフラを運用しています。あなたのPythonコードは1回の認証されたREST呼び出しを行います。スクレイピング、Selenium、クキー、プ口キシは不要です。
News Volumeの開発者アカウント、OAuthトーケン、またはプラットフォームAP Iキーは必要ですか? いいえ。1つのtre ndsmcp A PIキーで30以上のデータソースすべてにアクセスできます。
News Volumeがバックエンドを変更した場合、壊れますか? いいえ。A PIの安定性是当社の責任です。上流で何か変更があれば、バックエンドを更新します。あなたのコードはそのまま動作し続けます。
同じキーで複数のプラつのフォームをクエリできますか?
はい。1つのキーですべてのデータソースをカバーします。sourceを上記の30以上の値のいずれかに切り替えてください。
無料枠はありますか? はい、月100リクエストまで無料で、クレジットカードは不要です。trendsmcp.aiでキーを取得。
本番データパイプラインで使用できますか? はい。クライアントはステートレスでスレッドセーフ、複数プラットフォームでの同時クエリのために非同期をサポートしています。
関連パッケージ
trendsmcp — コアパッケージ、全30以上のデータソース
youtube-trends-api / youtube-trends-mcp / youtube-trends-agent
google-search-trends-api / google-search-trends-mcp / google-search-trends-agent
wikipedia-trends-api / wikipedia-trends-mcp / wikipedia-trends-agent
app-store-trends-api / app-store-trends-mcp / app-store-trends-agent
news-sentiment-api / news-sentiment-mcp / news-sentiment-agent
リンク
ライセンス
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceReal-time trend data from Google Trends (Search, Images, News, Shopping), YouTube, TikTok, Reddit, Amazon, Wikipedia, npm, Steam, Spotify, X (Twitter), App Store, Google Play, web traffic, and news sentiment via one MCP connection. Works with Claude, Cursor, VS Code, Windsurf, ChatGPT, and any MCP-compatible AI.28MIT
- Alicense-qualityCmaintenanceMCP server providing news article mention volume data, weekly series, growth percentages, and a live Google News feed as an AI tool.MIT
- Alicense-qualityCmaintenanceProvides news sentiment scores, media volume trends, and historical coverage data for any topic, enabling AI to analyze positive or negative coverage over time.1MIT
- AlicenseAqualityBmaintenanceConnect AI agents to real-time financial news covering global markets, geopolitics, and company-level events. Search and filter articles by ticker, source, country, and language; every article includes sentiment scores and tagged company entities with tickers and ISINs. Remote server with standard OAuth 2.0, works out of the box with Claude, ChatGPT, Cursor, and any MCP client. Free tier available4387MIT
Related MCP Connectors
Real-time corroborated news events + 5-year archive, for agents. Free tier, no key.
News sentiment scores over time, with growth for any topic. Free key at trendsmcp.ai
Real-time curated crypto news for AI agents with sentiment, recaps, and search.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/trendsmcp-ai/news-volume-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server