Telegram Member Adder โ€” Native MCP Server ๐Ÿš€ avatar

Telegram Member Adder โ€” Native MCP Server ๐Ÿš€

Pricing

from $5.00 / 1,000 member-addeds

Go to Apify Store
Telegram Member Adder โ€” Native MCP Server ๐Ÿš€

Telegram Member Adder โ€” Native MCP Server ๐Ÿš€

Grow your Telegram channel on autopilot. Copy members from groups safely with smart delays, multi-account rotation and filters. ๐Ÿง  Native MCP Server - AI agents invoke tools directly via MCP protocol. Pay only $0.01 per member added. Free simulation included.

Pricing

from $5.00 / 1,000 member-addeds

Rating

0.0

(0)

Developer

opportunity-biz

opportunity-biz

Maintained by Community

Actor stats

0

Bookmarked

22

Total users

6

Monthly active users

19 days ago

Last modified

Share

๐Ÿš€ Telegram Member Adder โ€” Grow Your Channel Automatically

Copy members from any Telegram group to your channel โ€” safely, automatically, and with zero coding.
Pay only $0.01 per member successfully added. No monthly fees, no subscriptions.

Try it on Apify


๐Ÿง  Native MCP Server โ€” AI Agent Ready

This Actor is now a native MCP (Model Context Protocol) server. AI agents like Claude, ChatGPT, Cursor, Copilot, and any MCP-compatible client can discover and invoke its tools directly over HTTP โ€” no adapters needed.

Connect as an MCP client:

{
"mcpServers": {
"telegram-member-adder": {
"url": "https://your-actor.apify.actor/mcp"
}
}
}

Available MCP Tools

ToolWhat it does
fetch_membersFetch member list from a Telegram source group/channel
add_membersFull pipeline: fetch โ†’ filter โ†’ add to target with flood protection
simulate_addDry-run simulation โ€” preview who would be added (no real adds)
filter_membersApply language/keyword/premium filters to an existing member list
check_accountValidate a Telegram session string format

Why a native MCP server? Other Telegram tools require external adapters or the hosted mcp.apify.com proxy. This Actor is an MCP server โ€” deploy it, and AI agents talk to it directly. The first and only Telegram member adder with native MCP server support on Apify.


๐Ÿ† Why this is the best Telegram member adder on Apify

FeatureโŒ Other addersโœ… This Actor
Input interfaceRaw JSON โ€” confusing for non-devsโœ… Beautiful form with emojis, sections, clear labels
AuthQR code every run or external JSON fileโœ… Session string โ€” one-time setup, reusable forever
Multi-accountSingle account onlyโœ… Multi-account rotation + per-account cooldown
Flood controlNone โ€” accounts get bannedโœ… Smart delays + automatic cooldown when Telegram limits hit
Member filtersNoneโœ… Language, bio keywords, Premium filter
Output formatVisual log onlyโœ… Structured JSON dataset with 2 views (Summary + Technical)
MCP / AI readyNoโœ… Native MCP server โ€” direct protocol support, no adapters needed
Pricing$0.01 per start + $0.01 per resultโœ… Only $0.01 per member added โ€” runs with 0 adds cost $0
Safe modeNo โ€” you add or nothingโœ… Safe mode โ€” simulate first, see results before adding
Account safetyNo protectionโœ… Random delays, flood detection, cooldown system

๐ŸŽฏ Perfect for

  • Community builders โ€” grow your Telegram group or channel
  • Course creators โ€” invite relevant members from related communities
  • Crypto/NFT projects โ€” build your Telegram audience
  • Marketing teams โ€” targeted member acquisition
  • AI agents โ€” use MCP tools to automate Telegram member management
  • Anyone who wants to grow their Telegram presence safely

๐Ÿ›ก๏ธ Safety first

We take Telegram safety seriously:

  • Random delays between adds (you control min/max)
  • Automatic flood detection & cooldown
  • Multi-account rotation to distribute activity
  • Safe mode โ€” test with zero risk before going live

๐ŸŽฎ How it works

1. Connect your Telegram account (session string, no QR)
2. Pick a source group โ†’ we fetch members
3. Optional filters โ†’ we select only the right people
4. Pick your target channel โ†’ we add them safely
5. Get a clean dataset โ†’ see exactly what happened

Or use the MCP tools from any AI agent to do steps 2โ€“5 programmatically.

๐Ÿ“Š What you get

Each run produces a structured dataset with:

  • โœ… Who was added successfully
  • โญ๏ธ Who was already in the group
  • ๐Ÿ”’ Who couldn't be added (privacy settings)
  • โณ Who was skipped (flood protection)
  • ๐Ÿ” All safe mode results

Perfect for AI agents, MCP workflows, and data analysis.

๐Ÿ’ฐ Pricing

  • Model: Pay Per Event
  • Price: $0.01 per successfully added member
  • Free tier: Apify free plan credits ($5/month) apply automatically
  • Zero risk: A run with 0 successful adds costs $0
  • MCP tool calls: $0.001โ€“$0.01 per tool invocation (configured in pay_per_event.json)

๐Ÿš€ Quick start

  1. Get your Telegram API credentials at https://my.telegram.org
  2. Set TELEGRAM_API_ID and TELEGRAM_API_HASH in Actor settings
  3. Generate a session string (instructions below)
  4. Run with Safe mode ON to test
  5. Turn off safe mode when you're ready
  6. Or connect via MCP โ€” point your AI agent to the Actor's /mcp endpoint

How to get your session string

pip install telethon
python -c "
from telethon.sync import TelegramClient
from telethon.sessions import StringSession
API_ID = YOUR_API_ID
API_HASH = 'YOUR_API_HASH'
with TelegramClient(StringSession(), API_ID, API_HASH) as client:
print(client.session.save())
"

๐Ÿ”ง Input fields

FieldWhat it does
Session stringsYour Telegram account key (one-time setup)
Source groupWhere to take members from
Target channelWhere to add members
Safe modeSimulation โ€” see results without adding anyone
Max membersHow many to process
Min/Max delayWait time between adds (seconds)
Language filterOnly add users with specific language
Bio keywordsOnly add users whose bio mentions certain words
Premium onlyOnly Telegram Premium users

๐Ÿ“‹ Output fields

FieldDescription
โœ… Status emojiQuick visual: added, skipped, error
First/Last nameMember's profile name
Username@username (if public)
ResultPlain language: "Added successfully", etc.
Planโญ Premium or Free
Status codeTechnical code for developers

๐Ÿงช Verification

The MCP server implementation passes 10 automated tests:

  • โœ… All 5 tools registered with FastMCP
  • โœ… Every tool has a valid input schema
  • โœ… No unexpected tools exposed
  • โœ… Module imports cleanly
  • โœ… MCP instructions contain tool descriptions
  • โœ… Readiness probe (GET /) returns 200
  • โœ… MCP tools/list returns all 5 tools over HTTP
  • โœ… MCP check_account tool works (pure validation)
  • โœ… MCP ping/pong works
  • โœ… Tools/call with invalid args returns proper errors

Run tests: .venv/bin/python -m pytest test_mcp_server.py -v

๐Ÿ“ License

This Actor is provided for legitimate community building purposes.
Always respect Telegram Terms of Service and applicable privacy laws.
Use only on groups and channels you own or have explicit permission to manage.