a13awd's picture
Upload folder using huggingface_hub
c982242 verified
Raw
History Blame Contribute Delete
10.3 kB
{"version": 1, "servers": [{"name": "Telegram", "description": "An MCP server that provides paginated chat reading, message retrieval, and message sending capabilities for Telegram through Telethon integration.", "summary": "A full-featured Telegram integration for Claude, Cursor, and any MCP-compatible client, powered by Telethon and the Model Context Protocol (MCP). This project allows you to interact with your Telegram account programmatically, automating tasks from messaging to group management.", "tools": [{"name": "get_chats", "description": "Get a paginated list of chats.", "parameter": {"page": "(int) Page number (1-indexed)", "page_size": "(int) Number of chats per page"}}, {"name": "list_chats", "description": "List chats with metadata and filtering.", "parameter": {"chat_type": "(str) Type of chat (e.g., 'private', 'group', 'channel')", "limit": "(int) Maximum number of chats to return"}}, {"name": "get_chat", "description": "Get detailed info about a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "create_group", "description": "Create a new group.", "parameter": {"title": "(str) Title of the group", "user_ids": "(list of int) List of user IDs to add to the group"}}, {"name": "create_channel", "description": "Create a channel or supergroup.", "parameter": {"title": "(str) Title of the channel/supergroup", "about": "(str) Description of the channel/supergroup", "megagroup": "(bool) Whether to create a supergroup"}}, {"name": "edit_chat_title", "description": "Change chat/group/channel title.", "parameter": {"chat_id": "(int) ID of the chat", "title": "(str) New title"}}, {"name": "delete_chat_photo", "description": "Remove chat/group/channel photo.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "leave_chat", "description": "Leave a group or channel.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "get_participants", "description": "List all participants in a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "get_admins", "description": "List all admins in a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "get_banned_users", "description": "List all banned users in a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "promote_admin", "description": "Promote user to admin.", "parameter": {"chat_id": "(int) ID of the chat", "user_id": "(int) ID of the user to promote"}}, {"name": "demote_admin", "description": "Demote admin to user.", "parameter": {"chat_id": "(int) ID of the chat", "user_id": "(int) ID of the user to demote"}}, {"name": "ban_user", "description": "Ban user from a chat.", "parameter": {"chat_id": "(int) ID of the chat", "user_id": "(int) ID of the user to ban"}}, {"name": "unban_user", "description": "Unban user from a chat.", "parameter": {"chat_id": "(int) ID of the chat", "user_id": "(int) ID of the user to unban"}}, {"name": "get_invite_link", "description": "Get invite link for a group or channel.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "export_chat_invite", "description": "Export invite link for a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "import_chat_invite", "description": "Join chat by invite hash.", "parameter": {"hash": "(str) Invite hash"}}, {"name": "join_chat_by_link", "description": "Join chat by invite link.", "parameter": {"link": "(str) Invite link"}}, {"name": "get_messages", "description": "Get paginated messages.", "parameter": {"chat_id": "(int) ID of the chat", "page": "(int) Page number (1-indexed)", "page_size": "(int) Number of messages per page"}}, {"name": "list_messages", "description": "List filtered messages.", "parameter": {"chat_id": "(int) ID of the chat", "limit": "(int) Maximum number of messages to return", "search_query": "(Optional, str) Search query", "from_date": "(Optional, datetime) Start date", "to_date": "(Optional, datetime) End date"}}, {"name": "send_message", "description": "Send a message to a specific chat.", "parameter": {"chat_id": "(int) ID of the chat", "message": "(str) Message content to send"}}, {"name": "reply_to_message", "description": "Reply to a message.", "parameter": {"chat_id": "(int) ID of the chat", "message_id": "(int) ID of the message to reply to", "text": "(str) Reply text"}}, {"name": "edit_message", "description": "Edit a message.", "parameter": {"chat_id": "(int) ID of the chat", "message_id": "(int) ID of the message to edit", "new_text": "(str) New message text"}}, {"name": "delete_message", "description": "Delete a message.", "parameter": {"chat_id": "(int) ID of the chat", "message_id": "(int) ID of the message to delete"}}, {"name": "forward_message", "description": "Forward a message.", "parameter": {"from_chat_id": "(int) ID of the chat to forward from", "message_id": "(int) ID of the message to forward", "to_chat_id": "(int) ID of the chat to forward to"}}, {"name": "pin_message", "description": "Pin a message.", "parameter": {"chat_id": "(int) ID of the chat", "message_id": "(int) ID of the message to pin"}}, {"name": "unpin_message", "description": "Unpin a message.", "parameter": {"chat_id": "(int) ID of the chat", "message_id": "(int) ID of the message to unpin"}}, {"name": "mark_as_read", "description": "Mark all messages as read in a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "get_message_context", "description": "Get context around a message.", "parameter": {"chat_id": "(int) ID of the chat", "message_id": "(int) ID of the message", "context_size": "(int) Number of messages before and after the message"}}, {"name": "get_history", "description": "Get full chat history.", "parameter": {"chat_id": "(int) ID of the chat", "limit": "(int) Maximum number of messages to return"}}, {"name": "get_pinned_messages", "description": "List pinned messages in a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "get_last_interaction", "description": "Get the most recent message with a contact.", "parameter": {"contact_id": "(int) ID of the contact"}}, {"name": "list_contacts", "description": "List all contacts.", "parameter": {}}, {"name": "search_contacts", "description": "Search contacts.", "parameter": {"query": "(str) Search query"}}, {"name": "add_contact", "description": "Add a contact.", "parameter": {"phone": "(str) Phone number of the contact", "first_name": "(str) First name of the contact", "last_name": "(Optional, str) Last name of the contact"}}, {"name": "delete_contact", "description": "Delete a contact.", "parameter": {"user_id": "(int) ID of the contact"}}, {"name": "block_user", "description": "Block a user.", "parameter": {"user_id": "(int) ID of the user to block"}}, {"name": "unblock_user", "description": "Unblock a user.", "parameter": {"user_id": "(int) ID of the user to unblock"}}, {"name": "import_contacts", "description": "Bulk import contacts.", "parameter": {"contacts": "(list of dict) List of contact dictionaries"}}, {"name": "export_contacts", "description": "Export all contacts as JSON.", "parameter": {}}, {"name": "get_blocked_users", "description": "List blocked users.", "parameter": {}}, {"name": "get_contact_ids", "description": "List all contact IDs.", "parameter": {}}, {"name": "get_direct_chat_by_contact", "description": "Find direct chat with a contact.", "parameter": {"contact_query": "(str) Name, username, or phone number to search for"}}, {"name": "get_contact_chats", "description": "List all chats with a contact.", "parameter": {"contact_id": "(int) ID of the contact"}}, {"name": "get_me", "description": "Get your user info.", "parameter": {}}, {"name": "update_profile", "description": "Update your profile.", "parameter": {"first_name": "(str) New first name", "last_name": "(Optional, str) New last name", "about": "(Optional, str) New about text"}}, {"name": "delete_profile_photo", "description": "Remove your profile photo.", "parameter": {}}, {"name": "get_user_photos", "description": "Get a user's profile photos.", "parameter": {"user_id": "(int) ID of the user", "limit": "(int) Maximum number of photos to return"}}, {"name": "get_user_status", "description": "Get a user's online status.", "parameter": {"user_id": "(int) ID of the user"}}, {"name": "get_media_info", "description": "Get info about media in a message.", "parameter": {"chat_id": "(int) ID of the chat", "message_id": "(int) ID of the message"}}, {"name": "search_public_chats", "description": "Search public chats, channels, or bots by username or title.", "parameter": {"query": "(str) Search query"}}, {"name": "search_messages", "description": "Search messages in a chat.", "parameter": {"chat_id": "(int) ID of the chat", "query": "(str) Search query", "limit": "(int) Maximum number of messages to return"}}, {"name": "resolve_username", "description": "Resolve a username to ID.", "parameter": {"username": "(str) Username to resolve"}}, {"name": "get_sticker_sets", "description": "List sticker sets.", "parameter": {}}, {"name": "get_bot_info", "description": "Get info about a bot.", "parameter": {"bot_username": "(str) Username of the bot"}}, {"name": "set_bot_commands", "description": "Set bot commands (bot accounts only).", "parameter": {"bot_username": "(str) Username of the bot", "commands": "(list of dict) List of command dictionaries"}}, {"name": "get_privacy_settings", "description": "Get privacy settings.", "parameter": {}}, {"name": "set_privacy_settings", "description": "Set privacy settings.", "parameter": {"key": "(str) Setting key", "allow_users": "(list of int) List of user IDs to allow", "disallow_users": "(list of int) List of user IDs to disallow"}}, {"name": "mute_chat", "description": "Mute notifications for a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "unmute_chat", "description": "Unmute notifications for a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "archive_chat", "description": "Archive a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "unarchive_chat", "description": "Unarchive a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "get_recent_actions", "description": "Get recent admin actions in a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}], "source": "mcp_tools_dataset", "external_id": null}]}