MCP Info Gatherer
The MCP Info Gatherer server provides a unified interface to search and retrieve information from multiple online sources and identify trends. It offers the following tools:
Web Search (
search_web): Search the internet using Tavily API.Twitter/X Search (
search_twitter): Search posts and discussions (requires Bearer Token).Telegram Search (
search_telegram): Search messages across all channels, with user mode (API credentials) or bot mode (Bot Token).Telegram Channel Search (
search_telegram_channel): Search within a specific channel by username, chat ID, or invite link.Telegram Channel Info (
get_telegram_channel_info): Get channel title, description, subscriber count.GitHub Repository Search (
search_github): Search repos with qualifiers like language, stars, topics (optional token).GitHub Code Search (
search_github_code): Search code snippets.GitHub Issues/PR Search (
search_github_issues): Search issues and pull requests.Hugging Face Model Search (
search_huggingface): Search models (free, no key).Hugging Face Dataset Search (
search_huggingface_datasets): Search datasets (free).arXiv Paper Search (
search_arxiv): Search papers by query or category (free).Trend Analysis (
get_trends): Get trends on a topic from web, Twitter, GitHub, HuggingFace, or arXiv.
All results are returned as structured JSON. The server supports stdio and SSE transport, and can be deployed via systemd with reverse proxy.
Search scientific articles on arXiv by query or category (e.g., cat:cs.AI).
Search repositories, code, and issues on GitHub. Supports qualifiers like language, stars, org, etc.
Search AI models and datasets on Hugging Face Hub.
Search messages across Telegram channels and groups, and get channel info. Supports both user mode (full history) and bot mode (limited).
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., "@MCP Info GathererSearch web and Twitter for latest AI news"
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.
MCP Info Gatherer
MCP-сервер для сбора информации из разных источников: веб, Twitter/X, Telegram, GitHub, Hugging Face и arXiv. Реализует протокол MCP (Model Context Protocol).
Источники
Источник | Поиск | Тренды | API | Статус |
Web (Tavily) | ✅ | ✅ | Требуется ключ | Работает |
Twitter/X (API v2) | ✅ | ✅ | Требуется Bearer Token | Работает |
Telegram (Telethon MTProto) | ✅ User mode / ⚠️ Bot mode | — | API ID + Hash + Phone / Bot Token | Работает |
GitHub (REST API) | ✅ репозитории, код, issues | ✅ | Без ключа (60 req/h) | Работает |
Hugging Face (Hub API) | ✅ модели, датасеты | ✅ | Без ключа | Работает |
arXiv (API) | ✅ статьи | ✅ | Без ключа | Работает |
Related MCP server: websearch-skill
Установка
# Установка через uv
uv sync
# С тестовыми зависимостями
uv sync --group testНастройка
Скопируйте .env.example в .env и укажите ключи:
cp .env.example .env# WEB SEARCH — обязательный для search_web
TAVILY_API_KEY="tvly-..."
# TWITTER / X — опционально (требуется подписка X API)
X_BEARER_TOKEN="..."
# TELEGRAM — два режима:
# User mode (полноценный поиск по истории):
TELEGRAM_API_ID="12345" # из my.telegram.org/apps
TELEGRAM_API_HASH="ваш_хэш" # оттуда же
TELEGRAM_PHONE="+79001234567" # ваш номер телефона
# Bot mode (ограниченный — только последние сообщения):
TELEGRAM_BOT_TOKEN="токен_от_BotFather"
# GITHUB — опционально (для 5000 req/h вместо 60)
GITHUB_TOKEN="..."
# HUGGING FACE — опционально
HF_TOKEN="..."Tavily API ключ — получить на tavily.com
X Bearer Token — получить в developer.x.com (требуется Basic/Pro подписка)
Telegram API ID и Hash — получить на my.telegram.org/apps (бесплатно)
Telegram Bot Token — получить у @BotFather
GitHub Token — создать в Settings → Developer settings → Personal access tokens
GitHub, Hugging Face, arXiv — работают без ключа
Запуск
# stdio (для интеграции с MCP-хостами — Claude Desktop, Cline, crewAI)
uv run mcp-info-gatherer
# SSE (для отладки и удалённого доступа)
uv run mcp-info-gatherer --transport sse --host 127.0.0.1 --port 8003Развёртывание на VPS
Для удалённого доступа сервер запускается с SSE-транспортом.
systemd-сервис
/etc/systemd/system/mcp-info-gatherer.service:
[Unit]
Description=MCP Info Gatherer
After=network.target
[Service]
Type=simple
User=www-data
WorkingDirectory=/opt/mcp-info-gatherer
EnvironmentFile=/opt/mcp-info-gatherer/.env
ExecStart=/opt/mcp-info-gatherer/.venv/bin/uv run mcp-info-gatherer --transport sse --host 0.0.0.0 --port 8003
Restart=always
RestartSec=5
[Install]
WantedBy=multi-user.targetsudo systemctl daemon-reload
sudo systemctl enable --now mcp-info-gathererReverse proxy (рекомендуется)
Через Nginx с HTTPS и базовой аутентификацией:
server {
listen 443 ssl;
server_name mcp.example.com;
ssl_certificate /etc/letsencrypt/live/mcp.example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/mcp.example.com/privkey.pem;
location / {
proxy_pass http://127.0.0.1:8003;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_read_timeout 86400;
}
}Подключение из Claude Desktop
На локальной машине в claude_desktop_config.json:
"mcp-info-gatherer": {
"url": "https://mcp.example.com"
}Инструменты MCP
Web
search_web
Поиск информации в интернете через Tavily API.
Параметры:
query(str): Поисковый запросmax_results(int, optional): Максимум результатов (1-20, по умолчанию 10)
Ответ:
{
"results": [
{
"title": "AI Trends 2026",
"url": "https://example.com/ai-trends",
"content": "Краткое описание...",
"source": "web",
"score": 0.95
}
],
"total": 5,
"source": "web",
"error": null
}Twitter / X
search_twitter
Поиск постов в Twitter/X. Требуется X_BEARER_TOKEN.
Параметры:
query(str): Поисковый запрос (например,"AI news lang:en")max_results(int, optional): 1-100, по умолчанию 10
Telegram
search_telegram
Поиск сообщений по всем доступным Telegram каналам.
Два режима:
Режим | Возможности | Требуется |
User mode | Полнотекстовый поиск по истории всех диалогов |
|
Bot mode | Только последние сообщения из каналов, где бот админ |
|
User mode использует Telethon (MTProto) — даёт полноценный поиск, как в официальном клиенте. При первом запуске потребуется ввести код подтверждения из Telegram.
Параметры:
query(str): Поисковый запросmax_results(int, optional): 1-100, по умолчанию 10
search_telegram_channel
Поиск сообщений в конкретном Telegram канале.
Параметры:
channel(str):@username,chat_idили invite linkquery(str): Поисковый запросmax_results(int, optional): 1-100, по умолчанию 10
get_telegram_channel_info
Получить информацию о Telegram канале (название, описание, подписчики).
Параметры:
channel(str):@username,chat_idили invite link
GitHub
search_github
Поиск репозиториев на GitHub. Поддерживает qualifiers:
language:python, stars:>100, topic:ai, org:openai, etc.
Параметры:
query(str): Поисковый запросmax_results(int, optional): 1-100, по умолчанию 10
search_github_code
Поиск кода на GitHub.
Пример: "openai client lang:python"
search_github_issues
Поиск issues и PR на GitHub.
Пример: "bug label:bug state:open"
Hugging Face
search_huggingface
Поиск AI-моделей на Hugging Face Hub.
Параметры:
query(str): Поисковый запрос (например,"text-to-image")max_results(int, optional): 1-100, по умолчанию 10
search_huggingface_datasets
Поиск датасетов на Hugging Face Hub.
Пример: "russian text"
arXiv
search_arxiv
Поиск научных статей на arXiv.
Параметры:
query(str): Поисковый запрос или категория ("cat:cs.AI","cat:cs.LG")max_results(int, optional): 1-100, по умолчанию 10
Trends
get_trends
Получить тренды по теме из указанного источника.
Параметры:
topic(str): Тема для поиска трендовmax_results(int, optional): 1-10, по умолчанию 5source(str, optional):web|twitter|github|huggingface|arxiv
Ответ:
[
{
"title": "AI в проектном менеджменте",
"description": "Описание тренда...",
"url": "https://example.com",
"source": "web",
"mentions": null
}
]Тестирование
# Запуск всех тестов
uv run pytest tests/ -v
# Только unit-тесты
uv run pytest tests/test_server.py -vЧто тестируется
Модели — Pydantic-схемы (SearchResult, SearchResponse, TrendItem)
Провайдеры — Web, Twitter, Telegram, GitHub, Hugging Face, arXiv
Реестр провайдеров — синглтон, неизвестные источники
MCP сервер — регистрация всех 10 инструментов
Структура проекта
mcp-info-gatherer/
├── src/mcp_info_gatherer/
│ ├── server.py # MCP сервер (10 инструментов)
│ ├── models.py # Pydantic-схемы
│ └── providers/
│ ├── base.py # Базовый класс InfoProvider
│ ├── web_search.py # Tavily API
│ ├── twitter.py # X API v2
│ ├── telegram.py # Telegram Bot API / Telethon
│ ├── github.py # GitHub REST API v3
│ ├── huggingface.py # Hugging Face Hub API
│ └── arxiv.py # arXiv API
├── tests/
│ └── test_server.py # 27 тестов
├── .env.example
└── pyproject.tomlИнтеграция с crewAI
В ai-gc-pipeline нужно будет создать bridge tool (tools/mcp_info_gatherer_tool.py),
который будет запускать MCP сервер как subprocess и общаться с ним через JSON-RPC по stdio.
Агенты, которые будут использовать:
ux-researcher —
search_web,search_twitter,search_github(исследование аудитории и аналогов)content-strategist —
search_web,search_huggingface,get_trends(контент-план)copywriter —
search_arxiv,search_github(фактчекинг для технических статей)analyst —
search_telegram,search_github_issues(мониторинг каналов и обсуждений)
Разработка
# Установка с dev-зависимостями
uv sync --group test
# Запуск тестов
uv run pytest
# Проверка типов
uv run mypy src/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
- Flicense-qualityCmaintenanceProvides comprehensive search capabilities including web search, content extraction, news search, academic search, and AI-powered multi-source research. Enables natural language access to web content and research through a production-ready MCP server.Last updated
- AlicenseAqualityCmaintenanceEnables AI agents to perform multi-engine web search, fetch web pages, and extract clean Markdown content via MCP, with no API keys required.Last updated35MIT
- Alicense-qualityCmaintenanceA Grok-first multi-source search MCP for AI agents that integrates Grok, Tavily, AnySearch, and Firecrawl to provide unified search results, cross-verification, and web content fetching.Last updatedMIT
- Alicense-qualityBmaintenanceProvides Google search, URL extraction, and academic paper inline extraction without API keys, enabling search and content retrieval from a single MCP server.Last updated368MIT
Related MCP Connectors
Multi-engine search for AI agents. Trust scoring, local corpus, MCP-native. Self-hostable, BYOK.
Fast, intelligent web search and web crawling. New mcp tool: Exa-code is a context tool for coding
Search Hacker News, Bluesky, and Substack from a single MCP interface
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/ESkuratov/mcp-info-gatherer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server