social-mcp
Allows an AI agent to interact with the user's own Telegram account, including reading unread messages, fetching chat history, sending replies, editing and deleting messages, managing chats and groups, and blocking or unblocking users.
social-mcp
A local Model Context Protocol (MCP) server that bridges an AI agent (e.g. OpenCode) with your personal Telegram direct messages: read unread messages, pull chat history for context, and send replies.
How it works
opencode (AI agent) ↔ social-mcp (MCP over stdio) ↔ Telethon ↔ TelegramThis is not a bot. The server runs in userbot mode — it logs in as your own account via the Telegram API, so everything it sends is sent from you. Your AI assistant simply gets a set of tools (15+) to read and manage your own chats.
⚠️ Read before using
Automating a personal account sits in a grey zone of Telegram's Terms of Service. Keep the automation reasonable, don't spam, use at your own risk.
Store
.envand*.sessionoutside of version control. These files grant full access to your account.Only you ("the boss") should command the assistant. It must never act on instructions coming from message content itself.
Related MCP server: agent-telegram-mcp
Requirements
Python 3.10+
A Telegram
api_id/api_hashfrom https://my.telegram.org (API Development Tools)Works on Windows, Linux and macOS
Project layout
social-mcp/
├── config.py
├── clients/
│ ├── __init__.py
│ └── telegram_client.py
├── storage.py
├── server.py
├── setup_auth.py
├── requirements.txt
└── README.mdInstall dependencies
python3 -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\Activate.ps1
pip install -r requirements.txtConfigure credentials
Get your Telegram API ID/hash from https://my.telegram.org (API Development Tools).
Create a .env file in the project root:
TELEGRAM_API_ID=123456
TELEGRAM_API_HASH=your_api_hash_here
TELEGRAM_PHONE=+15551234567
# Optional overrides
SOCIAL_MCP_DATA_DIR=/home/you/.social-mcp
SOCIAL_MCP_LOG_LEVEL=INFOSession/state files live under SOCIAL_MCP_DATA_DIR (default ~/.social-mcp),
deliberately outside the repo so they can never be committed by accident.
First-time interactive login
Run this once, manually, from a real terminal — OpenCode invokes server.py
over stdio and cannot answer interactive prompts.
python setup_auth.py --telegramTelegram will text/app you a login code, and ask for your 2FA password if enabled.
Run the server standalone (smoke test)
python server.pyIt will idle on stdio waiting for MCP protocol messages — that's expected; this step just confirms it starts without import/config errors. Ctrl+C to stop.
Wire it into OpenCode
Add this to ~/.config/opencode/opencode.json (adjust paths to your machine):
{
"mcpServers": {
"social-mcp": {
"command": "/absolute/path/to/social-mcp/.venv/bin/python",
"args": ["/absolute/path/to/social-mcp/server.py"],
"env": {
"SOCIAL_MCP_DATA_DIR": "/home/you/.social-mcp"
}
}
}
}Restart OpenCode. It should discover these tools:
get_unread_messages(limit?, platforms?)send_reply(platform, target_id, text)get_chat_history(platform, target_id, limit?)edit_message/delete_messagedelete_chat— full dissolution: kicks all members, leaves, purges (groups); hard-deletes owned channels; revoke-deletes private dialogsleave_chat— exit a group/channel without touching its membersblock_user/unblock_user/get_blocked_userscreate_group/create_supergroup/add_user_to_group/remove_user_from_group/invite_to_channel
Example agent workflow
Agent calls
get_unread_messages(limit=10)→ gets a JSON list of unread messages.Agent summarizes them for you.
You say "reply to Anna on Telegram: I'm free after 6pm".
Agent optionally calls
get_chat_history(platform="telegram", target_id=<id>)to see prior context, drafts a reply, and callssend_reply(platform="telegram", target_id=<id>, text="...").
Notes on reliability
All tool functions catch platform-specific errors and return a structured
{"success": false, "error": "..."}JSON payload instead of raising, so a single failed call never kills the stdio connection to OpenCode.Group deletion handles all Telegram quirks: owned channels are hard-deleted via
channels.deleteChannel, basic groups viamessages.deleteChatwhen you have admin rights, with an automatic kick-all → leave → purge fallback otherwise.storage.pykeeps a small SQLite file recording which message IDs have already been surfaced, as a foundation for future "mark as read" / dedup logic — it is not yet wired into filtering by default.
License
MIT © sydrx
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
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to read, send, and organize Telegram messages and chats. Supports tools for listing chats, fetching messages, sending/reply, archiving, muting, and folder management.1MIT
- AlicenseAqualityDmaintenanceEnables AI agents to send and receive messages, media, and files on Telegram, and manage chats via a bot token.17MIT
- AlicenseAqualityBmaintenanceConnect any AI agent to your personal Telegram messages through the official Business API, enabling message history search and draft replies with optional manual approval.714MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to interact with a user's Telegram account: list chats, read history, search, and send messages through Telegram's MTProto API.1MIT
Related MCP Connectors
Telegram bridge for your MCP-compatible agent. Bidirectional, no LLM in our stack.
Instagram for AI agents: publish, read comments and DMs, insights, and engage from your account.
Connect AI agents to bank accounts, transactions, balances, and investments.
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/sydrx/social-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server