Scrape messages, extract leads from public Telegram channels. No login required.
{
"mcpServers": {
"telegram-scraper": {
"url": "https://mcp.apify.com/?tools=actors,docs,get-actor-run,get-actor-run-list,khadinakbar/telegram-channel-scraper",
"type": "http",
"headers": {
"Authorization": "Bearer YOUR_APIFY_TOKEN"
}
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Scrape messages, extract leads from public Telegram channels. No login required.
Is it safe?
No known CVEs for telegram-channel-scraper-mcp-server.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 6 days ago. 1 stars. 192 weekly downloads.
Will it work with my client?
Transport: stdio, sse, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'telegram-channel-scraper-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for io.github.khadinakbaronline/telegram-channel-scraper-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that lets Claude, Cursor, and any MCP-compatible AI scrape public Telegram channels — no Telegram account, no phone number, no API key required.
Powered by the khadinakbar/telegram-channel-scraper Apify actor.
| Tool | Description |
|------|-------------|
| telegram_scrape_messages | Scrape messages from one or more public channels |
| telegram_get_channel_info | Get subscriber count, title, verification status |
| telegram_discover_related_channels | Find related channels via forwarded message analysis |
| telegram_extract_leads | Extract email addresses and links for lead generation |
Use the Apify-hosted MCP endpoint — no install, no npm, just add this URL to your MCP client:
https://mcp.apify.com/?tools=actors,docs,get-actor-run,get-actor-run-list,khadinakbar/telegram-channel-scraper
Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"telegram-scraper": {
"type": "http",
"url": "https://mcp.apify.com/?tools=actors,docs,get-actor-run,get-actor-run-list,khadinakbar/telegram-channel-scraper",
"headers": {
"Authorization": "Bearer YOUR_APIFY_TOKEN"
}
}
}
}
Add to your claude_desktop_config.json:
{
"mcpServers": {
"telegram-scraper": {
"command": "npx",
"args": ["-y", "telegram-channel-scraper-mcp-server"],
"env": {
"APIFY_TOKEN": "your_apify_token_here"
}
}
}
}
Config file location:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"telegram-scraper": {
"command": "npx",
"args": ["-y", "telegram-channel-scraper-mcp-server"],
"env": {
"APIFY_TOKEN": "your_apify_token_here"
}
}
}
}
npm install -g telegram-channel-scraper-mcp-server
APIFY_TOKEN=your_token telegram-channel-scraper-mcp
Once connected, ask Claude naturally:
"Scrape the last 100 messages from @telegram"
"How many subscribers does @durov have?"
"Find email addresses in @somebusinesschannel"
"What channels are related to @cryptonews?"
"Extract leads from @marketingchannel and @salesdeals"
telegram_scrape_messagesScrape messages from public Telegram channels.
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| channels | string[] | required | Channel usernames without @ (e.g. ["telegram"]) |
| max_messages | number | 50 | Max messages per channel (1–1000) |
| include_media | boolean | false | Include media URLs |
| include_reactions | boolean | false | Include reaction counts |
| extract_emails | boolean | true | Extract email addresses from text |
| extract_links | boolean | true | Extract URLs from text |
| since_last_run | boolean | false | Incremental mode — only new messages |
| response_format | string | "markdown" | "markdown" or "json" |
telegram_get_channel_infoGet metadata for a channel.
| Parameter | Type | Default | Description | |-----------|------|---------|----