yahoo_realtime_search
This server lets you search Yahoo! Japan's Realtime Search, which indexes recent public posts from X (formerly Twitter), and retrieve results in various formats.
search_realtime — the core tool, supporting:
Advanced search operators:
#hashtag,-word(exclude),A OR B(boolean OR),ID:username,@username,URL:domainSort options:
latest(newest first) orpopular(most reactions)Media filtering: all posts, image-only, or video-only
Pagination: 1–40 results per page, up to 25 pages
Time range filtering: via
sinceanduntil(Unix timestamps or ISO 8601)Output formats:
markdown(default, human-readable),compact_json,full_json(detailed structured data), orraw_json(raw API response)Rich post details: author, post time, reaction counts, post link, body text, external links, and media URLs
Note: This tool is intended for finding recent posts, trends, hashtags, and specific accounts — not for general web searches or verifying official information.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@yahoo_realtime_search最近のAIに関する投稿を検索"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
yahoo_realtime_search
Yahoo!リアルタイム検索を簡単に呼び出せる MCP です。
ツール説明等は全て日本語なので検索も日本語が多めになるかもしれません。
(そもそもYahooリアルタイム検索なんて日本人しか使ってないだろ)
参考にした記事:
Yahooリアルタイム検索のAPIが本当に有能だからみんな使ったほうがいい話
APIをまとめてくださってありがとうございます。
この API は公式API ではありません。節度を持って、自己責任で使いましょう。
概要
Yahoo!リアルタイム検索の検索結果を MCP ツールとして呼び出せます。
X の最近の投稿、反応、画像や動画付き投稿を調べたいときに使う想定です。
標準では、エージェントが読みやすい Markdown 形式で結果を返します。
Related MCP server: ORZ MCP
使い方
AI に導入を任せる
お使いの AI コーディングツールに以下をそのまま貼り付ければ、クローンから設定ファイルへの追記まで全部やってくれるはず。
以下のMCPサーバーを導入してください。
リポジトリ: https://github.com/Hsky16/yahoo_realtime_search
手順:
1. 適切な場所にgit cloneする
2. 依存関係をインストールする
3. このMCPクライアントの設定ファイルにサーバー設定を追記する手動で導入する場合
わからないことがあったら AI に聞けばいい感じにやってくれると思います。
1. uv のインストール
uv が未インストールの場合は先にインストールしてください。
# macOS / Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"2. リポジトリのクローンと依存関係のインストール
git clone https://github.com/Hsky16/yahoo_realtime_search.git
cd yahoo_realtime_search
uv sync3. MCP クライアントの設定
MCP クライアントの設定ファイルに以下を追記します。
/path/to/yahoo_realtime_search はクローンした実際のディレクトリの絶対パスに書き換えてください。
(例: /home/user/repos/yahoo_realtime_search や C:\Users\you\repos\yahoo_realtime_search)
{
"mcpServers": {
"yahoo_realtime_search": {
"command": "uv",
"args": [
"--directory",
"/path/to/yahoo_realtime_search",
"run",
"yahoo-realtime-search"
]
}
}
}各ツールの設定ファイルの場所:
ツール | 設定ファイル |
Claude Code |
|
Codex |
|
Cursor |
|
Gemini CLI |
|
ツール
search_realtime: Yahoo!リアルタイム検索を呼び出します。
この MCP を使うべき場面、Markdown の出力構造、output_format の使い分けは、MCP の instructions と description に入れています。
運用方針にあわせてClaudeCode、Codex等用いて改変するのがおすすめです。
ツール呼び出し例
画像付き投稿を人気順で 20 件:
{
"query": "#AI",
"sort": "popular",
"media_type": "image",
"limit": 20,
"output_format": "markdown"
}特定ユーザーの動画付き投稿:
{
"query": "ID:nhk_news",
"media_type": "video",
"limit": 10
}2 ページ分をまとめて取得:
{
"query": "アニメ",
"pages": 2,
"limit": 20
}期間指定:
{
"query": "アニメ",
"since": "2026-01-01T00:00:00+09:00",
"until": "2026-03-01T00:00:00+09:00"
}ライセンス
MIT License です。利用、改変、再配布、商用利用などご自由にお使いください。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
- 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/Hsky16/yahoo_realtime_search'
If you have feedback or need assistance with the MCP directory API, please join our Discord server