💬

Communication MCP Servers

144 servers available

Messaging, email, and collaboration tools

💬

Slack MCP Server

by Ivan Korotovsky

LocalFeatured

The Slack MCP server (built by Ivan Korotovsky) connects AI assistants like Claude, Cursor, and Windsurf directly to Slack workspaces, enabling conversational access to your team communication channels without requiring workspace admin approval for a bot install. Its standout feature is a "no permission" stealth mode — it authenticates using your own personal Slack session tokens (xoxc/xoxd, or a stored browser session) rather than requiring a Slack App with OAuth scopes, so it works even in locked-down workspaces where you cannot create bots. It also supports full OAuth Bot Token auth and Enterprise/GovSlack deployments for teams that prefer a conventional app install. Tools exposed include reading channel and DM/group-DM history with smart pagination, searching messages across the workspace, posting messages and thread replies, listing channels and users, and adding reactions. Common use cases include automating standups by posting summaries directly to team channels, searching past Slack conversations to surface decisions or context, monitoring specific channels for keywords or alerts, and drafting replies to thread discussions — all from natural-language prompts. Supports both Stdio and SSE transports plus proxy configuration for corporate networks. Install with: `npx slack-mcp-server@latest --transport stdio`. A separate official-style integration exists from Zencoder (@zencoderai/slack-mcp-server) for teams that prefer standard Bot Token OAuth over session-token auth. Compatible with Claude Desktop, Cursor, VS Code, Windsurf, and Cline.

💬

Gmail MCP Server

by googleworkspace

LocalFeaturedOfficial

The Gmail MCP Server is the official Google Workspace Model Context Protocol integration, giving AI assistants like Claude, Cursor, and Windsurf direct access to your Gmail account. Built and maintained by the Google Workspace team, the server exposes Gmail as callable MCP tools: search the inbox with Gmail query syntax (from:, subject:, has:attachment, after:), read full email threads including message bodies and metadata, send new messages or reply-to threads, create draft emails for review, manage labels (apply, remove, list), and mark messages read or unread. This makes the Gmail MCP server essential for productivity workflows like "summarize today's unread emails from my team," "find every invoice email from Stripe last quarter," "draft a reply to this thread and label it Follow-Up," or "list all emails with attachments from this client." Authentication requires a Google Cloud project with the Gmail API enabled and OAuth 2.0 credentials configured — download credentials.json from the Google Cloud Console and follow the server's auth setup to generate an access token. Works with Claude Desktop, Cursor, VS Code, and Windsurf. With 1,200+ GitHub stars, it is the most popular official Google productivity integration in the MCP ecosystem.

💬

Twilio MCP Server

by Twilio

LocalOfficial

Twilio's official MCP server, built by the Twilio Alpha team and published as @twilio-alpha/mcp, exposes the entirety of Twilio's public API surface to AI assistants over the Model Context Protocol. Rather than hand-writing tool wrappers, the server auto-generates MCP tools directly from Twilio's OpenAPI specs, so it stays in sync with new Twilio products (Voice, Messaging/SMS, Verify, Lookup, Conversations, and more) as they ship. Because a full API surface can blow past an LLM's context window, the server supports --services and --tags flags to scope which Twilio products are loaded into a given session, keeping tool lists small and relevant. Authentication uses a Twilio Account SID paired with an API Key/Secret pair (created in the Twilio Console), passed as a single credential string at launch rather than long-lived account credentials. The monorepo also ships a companion openapi-mcp-server package that can turn any OpenAPI spec into an MCP server using the same generator, useful for teams building on top of Twilio's partner or vertical APIs. Twilio's security guidance explicitly recommends against running community MCP servers alongside the official one to reduce the risk of a compromised third-party tool touching production SMS, voice, or verification workflows tied to real phone numbers and customer data.

💬

SendGrid

by Twilio

LocalOfficial

Send emails and manage email templates with SendGrid.

💬

Resend MCP Server

by Resend

LocalOfficial

The Resend MCP Server is Resend's official Model Context Protocol integration, letting AI assistants send and receive transactional email, manage contacts, broadcasts, and domains directly from Claude, Cursor, or any MCP-compatible client. Resend offers two ways to connect: a fully hosted remote server at mcp.resend.com (Streamable HTTP, no local install, OAuth login on first connect) that works well for Claude web/desktop and Cursor, or the same open-source code run locally via `npx resend-mcp` (published to npm as `resend-mcp`) using stdio or HTTP transport for CI, headless agents, or self-hosted setups. Authentication is either OAuth (hosted mode, browser-based) or a Resend API key passed as a Bearer token — handy for servers where a browser login isn't possible. Setup is documented for Claude Code, Claude Desktop/web, Cursor, Windsurf, Codex, and GitHub Copilot in VS Code. Typical use: ask Claude to "send a welcome email to this new signup using our verified domain" or "list contacts added to the newsletter audience this week," and the MCP server routes the request through your existing Resend account — no custom SMTP or REST integration code required. With 546+ GitHub stars, it's one of the most widely adopted first-party MCP servers in the email/transactional-messaging category.

💬

Discord MCP Server

by SaseQ

Local

The Discord MCP Server (SaseQ/discord-mcp) is a Java-based Model Context Protocol integration built on JDA (Java Discord API) that turns a Discord bot into a set of tools AI assistants can call directly. It lets Claude, Cursor, and other MCP clients read and send channel messages, manage threads, create and moderate channels and categories, manage roles and permissions, look up server (guild) members, and pull message history — enabling AI-driven community moderation, automated announcements, and Discord-native workflows without hand-writing bot code. The recommended install is Docker: set DISCORD_TOKEN (from a bot registered in the Discord Developer Portal) and an optional DISCORD_GUILD_ID as environment variables, then run the saseq/discord-mcp:latest image with SPRING_PROFILES_ACTIVE=http, which exposes the MCP endpoint at http://localhost:8085/mcp for remote/HTTP-transport clients. A Docker Compose path and a stdio-transport mode are also documented for local, per-client setups like Claude Desktop. Because it wraps JDA (Spring Boot underneath), it handles Discord's gateway/rate-limit quirks for you rather than requiring a hand-rolled REST client. This is the most-starred dedicated Discord MCP implementation; other community servers like v-3/discordmcp and hanweg/mcp-discord cover similar ground with lighter Node/Python stacks if a non-JVM runtime is preferred.

💬

Telegram MCP Server

by chigwell (Community)

Local

A Telegram MCP server that connects Claude, Cursor, and other MCP-compatible clients directly to a Telegram user account via the Telethon library, exposing 80+ tools grouped into accounts, chats/groups, messages, contacts, media, profile/privacy, and folders/drafts. It supports multi-account setups (list accounts and route tool calls by label), full group and channel administration (create/join/leave, invites, bans, admin roles, slow mode, topics), rich messaging (send, schedule, edit, delete, forward, pin, reply, search, polls, reactions, inline button inspection and press), contact management (add/remove/block/import/export), and media handling (files, voice notes, stickers, GIFs, downloads/uploads). All tool results containing Telegram user-controlled content are sanitized before being returned as structured JSON, and a device-identity feature lets the session appear as a distinct, labeled client rather than a generic script. Authentication uses a Telegram API ID/hash from my.telegram.org plus a generated session string — no bot token required, since this operates as a full user account. A `TELEGRAM_EXPOSED_TOOLS=read-only` mode is available to restrict the MCP surface to read-only tools when write access is not needed. The project explicitly warns against installing the unrelated `telegram-mcp` package from PyPI, which is owned by a different, unaffiliated project — always install from source via `uv sync`.

💬

WhatsApp MCP Server

by lharries (Community)

Local

The WhatsApp MCP server connects Claude and other MCP clients directly to your personal WhatsApp account so an AI assistant can search, read, and send messages, contacts, and media through natural language. Unlike hosted bots that require the paid WhatsApp Business API, this community server (lharries/whatsapp-mcp, the most-adopted WhatsApp MCP server on GitHub) links to your regular account via the WhatsApp Web multidevice API using the Go whatsmeow library — you authenticate once by scanning a QR code, then re-authenticate roughly every 20 days. It runs as two components: a Go bridge that maintains the WhatsApp connection and stores your full message history in a local SQLite database, and a Python MCP server that exposes tools to the agent. Messages stay on your machine and are only sent to the LLM when a tool explicitly reads them, so you control what the model sees. Available tools cover searching contacts and chats, reading individual and group conversations (including images, video, documents, and audio), sending text messages to people or groups, and sending media — with optional FFmpeg-based conversion to play audio as native WhatsApp voice notes. Note the "lethal trifecta" caution in the README: because it combines private data, tool access, and external content, prompt injection could risk data exfiltration.

💬

Intercom MCP Server

by Intercom

Auth requiredOfficial

The Intercom MCP Server is Intercom's official, hosted Model Context Protocol integration, giving AI assistants secure access to conversations and contacts in a company's Intercom workspace (currently US-hosted workspaces only). Rather than a local binary, it runs as a remote server at `mcp.intercom.com`, reachable over Streamable HTTP (`https://mcp.intercom.com/mcp`, recommended) or a legacy SSE endpoint kept for backwards compatibility. It exposes six tools: a universal `search` tool that queries either conversations or contacts via a field-based query DSL (operators like eq, neq, gt, lt, contains, plus free-text `q:` search and pagination), a matching `fetch` tool for pulling full resource detail by ID, and four direct-API tools — `search_conversations`, `get_conversation`, `search_contacts`, and `get_contact` — for more targeted lookups by state, source type, author, custom attributes, or email domain. Authentication supports either an automatic browser-based OAuth flow (recommended) or a static Bearer API token, configured in the client as an `mcp-remote` proxy entry pointing at the hosted URL. Typical use: ask Claude to "find all open conversations mentioning a refund from the last week" or "pull the full history and custom attributes for this contact by email," and the assistant queries live Intercom data instead of requiring a CSV export or manual dashboard search — useful for support triage, customer research, and drafting responses grounded in real conversation history.

Checked 8d ago

💬

Zendesk MCP Server

by reminia

Local

This Zendesk MCP Server (by community maintainer reminia, 100+ GitHub stars, Apache 2.0) gives AI assistants full read/write access to Zendesk support tickets, comments, and Help Center articles for triage, response drafting, and knowledge-base search directly from Claude Desktop, Claude Code, or Cursor. It's a Python server installed with `uv` (or run in Docker for isolated deployments) and configured with Zendesk API credentials via a `.env` file — subdomain, agent email, and an API token generated from the Zendesk admin panel. Beyond raw ticket/comment CRUD, the server ships specialized MCP prompts purpose-built for support workflows: ticket analysis (summarizing a thread's history and sentiment) and response drafting (generating a reply grounded in the ticket's comment history and matching Help Center articles), plus full-text access to the Help Center knowledge base so the assistant can cite existing documentation instead of hallucinating an answer. Typical use: ask Claude to "pull ticket #4821, summarize the customer's issue, and draft a reply referencing our refund policy article" — the assistant fetches the ticket and comments, cross-references the Help Center, and returns a ready-to-send draft. A good fit for support teams already living in Claude/Cursor who want ticket context surfaced without tab-switching to the Zendesk agent console.

💬

Freshdesk MCP Server

by effytech (Community)

Local

The Freshdesk MCP Server connects MCP-capable clients like Claude Desktop and Cursor to Freshdesk's help-desk platform, letting an AI assistant handle support operations through natural language instead of the Freshdesk admin UI. Ticket tools cover the full lifecycle: create_ticket (with subject, description, priority, status, custom fields), update_ticket, delete_ticket, get_ticket, get_tickets with pagination, and search_tickets against Freshdesk's query syntax — plus conversation-level tools for get_ticket_conversation, create_ticket_reply, create_ticket_note, and update_ticket_conversation so an agent can both read a customer thread and post a reply or internal note without a human copy-pasting between systems. A ticket-summary tool set (view/update/delete) exposes Freshdesk's AI-generated ticket summaries directly. Beyond tickets, the server covers agent management (get_agents, view_agent, create_agent, update_agent, search_agents), contacts (list/get/search/update), and companies (list/get/search/find_company_by_name/list_company_fields) — enough surface area to let an agent triage an incoming ticket, look up the requester's company and past tickets, and draft or send a reply in one conversational flow. Example prompts from the maintainer include "list previous tickets of customer A101 in last 30 days" and "update the status of ticket #12345 to Resolved." Authentication uses a Freshdesk API key plus your Freshdesk subdomain, set as FRESHDESK_API_KEY and FRESHDESK_DOMAIN environment variables; install via uvx or the Smithery CLI. This is a community project (not published by Freshworks itself), MIT-licensed and the most-starred Freshdesk MCP implementation on GitHub.

💬

X (Twitter) MCP Server

by Rafal Janicki (Community)

Local

A Python-based MCP server that lets Claude, Cursor, and other AI tools interact with X/Twitter through natural-language commands, built on the official Twitter API v2 rather than username/password scraping hacks (which risk account suspension). It exposes tools to fetch user profiles, followers, and following lists; post, delete, and favorite tweets; search tweets and trending topics; manage bookmarks and timelines; and handle rate limits automatically across the v2 endpoint surface. Authentication requires a Twitter Developer Account with API Key, API Secret, Access Token, Access Token Secret, and Bearer Token from the Twitter Developer Portal — there is no keyless or scraping-based mode, so this targets developers who already have (or are willing to apply for) API access rather than casual users. Install options include Smithery (`npx -y @smithery/cli install @rafaljanicki/x-twitter-mcp-server --client claude`) for one-command Claude Desktop setup, PyPI (`pip install x-twitter-mcp`) for a quick manual install, or cloning the source with `uv sync`/`pip install .` for development. The project is a smaller community effort (35 stars) compared to the official Twitter API tooling ecosystem, but is actively maintained and one of the few X/Twitter MCP servers built on the sanctioned API path rather than reverse-engineered browser automation.

💬

Xquik

by Xquik-dev

Local

X and Twitter automation MCP server for tweet search, profile tweets, follower export, media workflows, webhooks, and confirmation-gated posting.

💬

Reddit MCP Server (Reddit MCP Buddy)

by karanb192 (Community)

Local

A clean, LLM-optimized MCP server that lets Claude Desktop and other AI assistants browse Reddit, search posts, and analyze user activity with zero setup and no Reddit API registration required. Core tools include `browse_subreddit` (hot/new/top/rising/controversial sorting across any subreddit, "all", or "popular", with time-range filters), `search_reddit` (query across all of Reddit or a specific subreddit, filterable by author/time/flair, sortable by relevance/hot/top/new/comments), `get_post_details` (fetch a post plus its full comment thread from a Reddit URL in any format — reddit.com, old./new./np./m.reddit.com, or redd.it short links — or from a bare post ID), and `user_analysis` (karma, post/comment history, and active subreddits for any username). A three-tier authentication system scales from 10 requests/minute with zero config up to 100 requests/minute when Reddit API credentials are supplied, so it works instantly out of the box and scales up for heavier use. The project deliberately avoids fabricated "sentiment analysis" or made-up metrics, focusing on clean, structured Reddit data formatted for LLM consumption. Install as a Claude Desktop Extension (.mcpb one-click download), via NPM (`npx -y reddit-mcp-buddy`), or through the official MCP Registry — it is fully TypeScript, actively maintained, and one of the most-starred Reddit MCP integrations available.

💬

Courier

by Courier

LocalOfficial

Build, update, and send multi-channel notifications across email, sms, push, Slack, and Teams.

💬

Knock

by Knock

LocalOfficial

Send product and customer messaging across email, in-app, push, SMS, Slack, Teams.

💬

LINE

by LINE

LocalOfficial

Integrates the LINE Messaging API to connect an AI Agent to LINE Official Account.

💬

Infobip

by Infobip

LocalOfficial

Send and receive SMS and RCS messages, interact with WhatsApp and Viber.

💬

ClickSend

by ClickSend

LocalOfficial

Official ClickSend MCP Server for SMS and communication.

💬

Mailgun

by Mailgun

LocalOfficial

Interact with Mailgun API.

💬

Mailjet

by Sinch

LocalOfficial

Official MCP server for Sinch Mailjet contact, campaign, segmentation, statistics APIs.

💬

Elastic Email

by Elastic Email

LocalOfficial

Elastic Email MCP Server delivers full-scale email capabilities to AI agents.

🔧

PagerDuty MCP

by pagerduty

LocalOfficial

Manage PagerDuty incidents, on-call schedules, and escalation policies from AI tools. Acknowledge, resolve, and query incidents through natural language.

💬

Twilio MCP

by twilio-labs

LocalOfficial

Send SMS, WhatsApp messages, and make voice calls through Twilio's official MCP server. Automate communication workflows from AI coding and automation tools.

💬

Microsoft Teams

by microsoft

LocalOfficial

Send messages, manage channels, schedule meetings, and read notifications in Microsoft Teams. Automate team collaboration from AI coding and productivity tools.

💬

Zoom

by zoom

LocalOfficial

Schedule meetings, manage recordings, and interact with Zoom through AI. Create instant meeting links, list recordings, and manage webinar registrations.

💬

Mattermost

by mattermost

LocalOfficial

Open-source team messaging MCP server. Post messages, manage channels, search message history, and automate workflows in self-hosted Mattermost.

💬

Microsoft Outlook

by microsoft

LocalOfficial

Manage emails and calendar in Microsoft Outlook via Graph API. Read, send, and organize emails, schedule meetings, and manage contacts through AI.

💬

Mailchimp

by mailchimp

LocalOfficial

Manage email marketing campaigns in Mailchimp. Create campaigns, manage audiences, design email templates, and analyze campaign performance via AI.

💬

Klaviyo

by klaviyo

LocalOfficial

Email and SMS marketing MCP for e-commerce. Manage flows, segments, campaigns, and metrics in Klaviyo to automate personalized customer journeys.

💬

Postmark

by ActiveCampaign

Local

Transactional email delivery MCP server. Send emails, manage templates, inspect delivery logs, and analyze bounce and open rates via Postmark.

💬

Brevo

by brevo-com

Local

All-in-one marketing platform MCP. Send transactional emails and SMS, manage contact lists, automate marketing workflows, and track campaign performance.

💬

LinkedIn

by linkedin

LocalOfficial

Professional network MCP for LinkedIn. Post updates, manage company pages, access profile data, and engage with the professional community via API.

💬

Instagram Graph API

by meta

LocalOfficial

Manage Instagram Business and Creator accounts via MCP. Schedule posts, read insights, manage comments, and access the Instagram Graph API for automation.

💬

TikTok

by tiktok

LocalOfficial

TikTok for Business MCP server. Manage ads, access video performance data, query creator insights, and automate TikTok marketing operations.

💬

Mastodon

by mastodon-mcp

Local

Federated social media MCP for Mastodon. Post toots, read timelines, manage followers, search the fediverse, and interact with ActivityPub-compatible servers.

📋

Apple Mail MCP Server

by patrickfreyer

Local

Apple Mail MCP Server gives AI assistants full read/write access to Mail.app on macOS — search, compose, organize, and analyze email through natural language, built on FastMCP over AppleScript. The tool surface spans 22 tools across six areas: reading & search (get_inbox_overview, list_inbox_emails, get_mailbox_unread_counts, list_accounts, search_emails with unified subject/sender/body/date/attachment/flag-color filtering across accounts, get_email_thread for full conversation view), organization (list_mailboxes, create_mailbox with nested-path support, move_email and manage_trash with dry-run previews, update_email_status for read/unread and colored flags), composition (compose_email, reply_to_email/reply-all, forward_email, manage_drafts, create_rich_email_draft for HTML .eml drafts), attachments (list/save), a "smart inbox" layer (get_awaiting_reply finds sent mail with no response, get_needs_response flags mail likely needing action, get_top_senders analyzes frequency by sender/domain), and analytics/export (get_statistics, export_emails to TXT/HTML, an interactive inbox_dashboard UI). Install via the Claude Code plugin marketplace (`claude plugin marketplace add patrickfreyer/apple-mail-mcp` then `claude plugin install apple-mail@apple-mail-mcp`) for the bundled slash command and skill, or zero-install `uvx mcp-apple-mail` / `pip install mcp-apple-mail` for the MCP server alone. A `--read-only` flag disables the three send-capable tools (compose/reply/forward) while leaving draft management intact — useful for read-heavy triage or analytics agents. Requires macOS with Mail.app configured and Python 3.10+. Pairs naturally with the existing apple-notes and reminders entries for a full Apple-productivity-suite AI workflow.

💬

Bluesky MCP

by gwbischof

Local

Interact with Bluesky social network via the AT Protocol. Post, search, follow, read timelines, and manage your Bluesky presence from your AI assistant.

💬

Resend MCP

by resend

LocalOfficial

Send transactional emails via Resend API directly from your AI assistant. Draft emails, send to recipients, manage email templates, and check delivery status — all through MCP. Perfect for developers building email workflows.

💬

Novu MCP

by novuhq

LocalOfficial

Open-source notification infrastructure MCP server. Trigger in-app, push, email, SMS, and chat notifications via Novu from your AI assistant. Manage subscribers, preferences, and notification workflows with AI.

💬

LiveKit MCP

by livekit

LocalOfficial

LiveKit MCP server for real-time voice and video AI applications. Manage rooms, participants, and recordings. Build voice AI agents that can join calls, transcribe audio, and respond in real-time using MCP tools.

💬

Vonage Communications MCP

by vonage-dev

Local

Vonage (formerly Nexmo) Communications APIs MCP server. Send SMS messages, make voice calls, verify phone numbers, send WhatsApp Business messages, and manage 2FA flows via Vonage API platform.

💬

Rocket.Chat MCP

by rocketchat

Local

Rocket.Chat open-source team communication MCP server. Send messages to channels and DMs, read conversations, manage users and rooms, access omnichannel chats, and query message history via Rocket.Chat REST API.

💬

Matrix Protocol MCP

by matrix-org

Local

Matrix decentralized communication protocol MCP server. Send and read messages in Matrix rooms, manage room membership, access encrypted chat history, and interact with Matrix bots via Matrix Client-Server API.

🤖

Vapi MCP

by vapiai

Local

Voice AI platform via Vapi. Create voice assistants, manage phone calls, configure voice workflows, and analyze call transcripts through Vapi's API.

💬

Zulip MCP

by zulip

Local

Open-source team chat via Zulip. Send messages, manage streams and topics, search conversation history, upload files, and administer your Zulip organization through the REST API.

💬

Cisco Webex MCP

by CiscoDevNet

Local

Cisco Webex messaging and meetings via MCP. Send messages to spaces, schedule and start meetings, manage teams and memberships, retrieve call recordings, and access Webex APIs for enterprise collaboration.

💬

Telnyx MCP

by team-telnyx

Local

Cloud communications via Telnyx. Send SMS and MMS, make and receive voice calls, manage phone numbers, configure SIP trunking, and access real-time call control via Telnyx REST APIs.

💬

SparkPost MCP

by SparkPost

Local

Transactional and marketing email via SparkPost (now Bird). Send emails with advanced analytics, manage suppression lists, query deliverability metrics, and configure IP pools and sending domains.

💬

Plivo MCP

by plivo

Local

SMS, MMS, and voice calls via Plivo. Send and receive SMS messages, make outbound calls with TTS, rent phone numbers, retrieve call recordings, and build IVR systems through Plivo's communication APIs.

💬

MessageBird MCP

by messagebird

Local

Omnichannel communications via MessageBird (now Bird). Send SMS, WhatsApp, and voice messages, manage contacts and segments, query delivery reports, and automate customer communication flows.

📣

Iterable MCP

by Iterable

Local

Cross-channel marketing platform via Iterable. Send email, SMS, and push notifications, manage user lists and segments, trigger campaign workflows, and query engagement analytics for lifecycle marketing.

💬

Daily.co MCP

by daily-co

Local

Real-time video and audio via Daily.co. Create meeting rooms, manage participants, control recording, query call analytics, and build custom video applications using Daily's REST API and webhooks.

📣

Mailchimp MCP

by mailchimp-community

Local

Manage Mailchimp email campaigns, audiences, and automations. Query subscriber data, campaign stats, and send targeted emails.

📣

Klaviyo

by klaviyo-community

Local

Manage Klaviyo email and SMS marketing. Query segment metrics, create and send campaigns, manage flow automations, analyze performance reports, and update profiles.

💬

Gorgias

by gorgias-community

Local

Manage Gorgias e-commerce helpdesk tickets. Create, update, and resolve support tickets, manage macros and rules, track agent performance, and integrate with Shopify orders.

💬

Google Chat

by google-workspace-dev

Local

Send messages, create spaces, and manage Google Chat conversations via the Google Chat API. Supports message formatting, card attachments, threaded replies, and webhook notifications.

📣

Drift

by drift-dev

Local

Access Drift conversational marketing platform. Manage conversations, leads, contacts, playbooks, and bot interactions via the Drift API for sales and marketing automation.

💬

Crisp

by crisp-dev

Local

Integrate with Crisp customer messaging platform. Access conversations, contacts, helpdesk articles, and chatbot flows. Automate customer support responses and manage inbox workflows.

💬

Viber

by viber-community

Local

Send messages and media via Viber Business Messages API. Reach customers on Viber with text, images, video, and rich content. Manage chatbot conversations, subscriber lists, and broadcast campaigns.

💬

Wire

by wireapp

Local

Interact with Wire secure messaging via Bot API. Send encrypted messages, manage group conversations, handle file transfers, and create automated wire bots for internal team communication.

💬

Discourse

by discourse-community

Local

Interact with Discourse community forum. Search posts and topics, read thread content, manage categories and tags, query user profiles, and create posts or topics programmatically via Discourse REST API.

📣

Attentive

by attentive-mobile

Local

Connect to Attentive SMS and email marketing platform via MCP. Manage subscriber lists, query campaign performance, access journey analytics, fetch opt-in data, and analyze revenue attribution for mobile marketing automation.

📣

Substack

by substack-devs

Local

Interact with Substack newsletter platform via MCP. Access publication data, post analytics, subscriber metrics, comment threads, and revenue statistics. Manage draft posts and automate newsletter performance reporting.

💻

Dev.to

by devto-community

Local

Connect to Dev.to developer community via MCP. Search articles, fetch user profiles and followers, query tags and reading lists, retrieve comment threads, and publish posts to the developer writing platform.

💬

Whereby

by whereby-devs

Local

Integrate Whereby embedded video conferencing via MCP. Create and manage meeting rooms, generate participant links, retrieve meeting recordings, query room analytics, and embed video calls into custom applications.

💬

Gather

by gather-town

Local

Connect to Gather virtual office and event space via MCP. Manage space layouts, query occupancy and visitor data, create spawning zones, access interaction analytics, and automate virtual workspace configurations.

💬

RingCentral

by ringcentral-community

Local

Integrate with RingCentral unified communications via MCP. Access SMS, fax, call logs, voicemail, video meetings, team messaging, and analytics. Automate customer communication workflows, call tracking, and business phone system management across RingCentral MVP.

💬

Hootsuite

by hootsuite-community

Local

Connect to Hootsuite social media management platform via MCP. Schedule posts across Facebook, Twitter/X, Instagram, LinkedIn, and Pinterest. Access analytics, monitor brand mentions, manage team workflows, and pull engagement metrics across all connected social accounts.

💬

Sprout Social

by sprout-community

Local

Integrate with Sprout Social for unified social media management via MCP. Schedule and publish content, monitor keywords and mentions, analyze post performance, manage customer interactions in the Smart Inbox, and generate reports across Instagram, Twitter/X, Facebook, LinkedIn, and TikTok.

💬

Buffer

by buffer-community

Local

Use Buffer social media scheduling via MCP. Queue posts for optimal publishing times, manage multiple social profiles, analyze engagement data, collaborate with team members on content calendars, and track link performance using Buffer analytics across Twitter/X, Instagram, LinkedIn, and Facebook.

💬

Agorapulse

by agorapulse-community

Local

Connect to Agorapulse social media management platform via MCP. Publish and schedule posts, manage social inboxes, monitor brand conversations, collaborate on content approval workflows, and access ROI reporting. Supports Facebook, Instagram, Twitter/X, LinkedIn, YouTube, and Google Business.

🌐

Bandwidth

by bandwidth-community

Local

Integrate with Bandwidth communications platform API via MCP. Access voice call CDRs, SMS/MMS message logs, phone number inventory and porting status, toll-free verification records, emergency calling registrations, WebRTC session data, and network analytics. Automate number provisioning and compliance reporting for enterprise communications.

🌐

SignalWire

by signalwire-community

Local

Connect to SignalWire cloud communications platform via MCP. Access voice calls, SMS messaging, video rooms, SIP endpoints, LAML application logs, phone number management, call flow analytics, and real-time relay events. Build AI-powered phone trees, intelligent IVRs, and programmable contact center workflows.

🌐

Streak CRM for Gmail

by streak-community

Local

Integrate with Streak CRM embedded in Gmail via MCP. Access pipeline boxes, contacts, organizations, and email thread associations stored in Google Sheets-style pipeline views. Query stage distribution analytics, snippet template usage, mail merge campaign open/click rates, call log entries, task due date compliance, and team collaboration comment threads without leaving Gmail.

🌐

Dialpad Business Communications

by dialpad-community

Local

Integrate with Dialpad AI-powered business communications platform via MCP. Query call recordings, AI-generated meeting transcripts, sentiment analysis scores, action item extractions, and coaching moment flags. Access contact center queue metrics, agent availability statuses, SMS conversation threads, video meeting attendance records, and Voice Intelligence analytics dashboards.

🌐

Aircall Cloud Phone

by aircall-community

Local

Connect to Aircall cloud-based phone system via MCP. Query call logs, voicemail transcriptions, IVR flow configurations, agent activity timelines, missed call reason codes, and Power Dialer campaign results. Access team performance metrics, CRM integration sync statuses (Salesforce, HubSpot, Pipedrive), call tag taxonomy usage, and real-time availability dashboard states for inside sales teams.

🌐

8x8 Communications

by 8x8-community

Local

Integrate with 8x8 unified communications and contact center platform via MCP. Access X Series voice, video, and chat session records, contact center interaction analytics, supervisor monitoring statuses, and Quality Management evaluation scores. Query speech analytics keyword spotting results, predictive dialer pacing reports, customer journey orchestration flow states, and Intelligent IVR containment rates.

🤖

LibreChat

by community

Local

LibreChat open-source AI chat platform MCP — manage multi-model conversations, configure endpoints (OpenAI, Claude, Gemini, Ollama), manage presets, query conversation history, and administer users and settings.

🤖

Botpress

by community

Local

Botpress conversational AI platform MCP — manage bots, inspect conversation flows, query message logs, update intents and entities, deploy bot updates, and monitor chatbot performance across channels.

📊

Chorus.ai

by community

Local

Chorus.ai conversation intelligence MCP — search and replay sales call recordings, extract key moments and next steps, analyze talk ratios and sentiment, pull deal risk signals, and surface coaching insights from recorded meetings.

💬

Mixmax

by community

Local

Mixmax Gmail sales engagement MCP — create and deploy email sequences, track open and click events, manage meeting scheduling links, query engagement analytics, use templates, and automate follow-up workflows inside Gmail.

📣

Lemlist

by community

Local

Lemlist email outreach automation MCP — create multi-channel campaigns (email, LinkedIn, phone), personalize templates with dynamic variables, query campaign performance metrics, manage lead lists, and control deliverability settings.

🔧

Incident.io

by community

Local

Incident.io incident management MCP — create and update incidents, query timeline events, list on-call schedules, retrieve postmortem drafts, manage follow-up actions, and access severity classifications for AI-assisted incident response.

🔧

Squadcast

by community

Local

Squadcast on-call and incident management MCP — query on-call schedules, create and acknowledge incidents, manage escalation policies, retrieve service health status, list past incidents, and trigger runbooks for automated incident response.

📋

Slite

by community

Local

Slite async team knowledge base MCP — search and retrieve documentation, create and update notes, manage channel hierarchies, query recently edited documents, access templates, and embed company knowledge into AI workflows for faster team onboarding.

💬

Microsoft 365 MCP

by softeria

Local

Microsoft 365 MCP server via Graph API — read and send emails, manage calendar events, access SharePoint documents, query OneDrive files, read Teams messages, and interact with Excel/Word documents. Full Microsoft 365 suite in your AI assistant.

💬

SendGrid

by sendgrid-community

Local

Transactional and marketing email via Twilio SendGrid API. Send emails, manage templates, handle suppression lists, track delivery stats, and manage marketing campaigns. Full SendGrid API access via MCP.

💬

Postmark

by postmark-community

Local

High-deliverability transactional email via Postmark's API. Send and track emails, manage message streams, handle email templates, monitor bounce rates, and inspect delivery analytics for developer-grade email infrastructure.

💬

beehiiv

by beehiiv-community

Local

Newsletter platform management via beehiiv's API. Create and schedule posts, manage subscriber lists, track publication analytics, segment audiences, and automate newsletter operations for creator-focused email publishing.

📋

Basecamp

by basecamp-community

Local

Project management and team communication via Basecamp's API. Manage to-dos, schedules, messages, and documents across Basecamp projects. Automate project updates and coordinate team work from your AI assistant.

💬

Help Scout MCP

by helpscout

Local

Help Scout customer support platform MCP server. Manage conversations, customers, mailboxes, and workflows through the Help Scout Mailbox API.

📋

Microsoft Loop MCP

by microsoftdocs

Local

Microsoft Loop collaborative workspace MCP server. Create and manage Loop pages, workspaces, and components. Sync content with Teams, Outlook, and Planner.

🤖

Rasa MCP

by Community

Local

Connect to Rasa conversational AI — test dialogue flows, manage NLU training data, and query bot responses.

🤖

Dialogflow CX MCP

by Community

Local

Manage Google Dialogflow CX agents, intents, flows, pages, and test conversations.

📣

Constant Contact MCP

by Community

Local

Manage Constant Contact email campaigns, contact lists, signup forms, and campaign reporting.

📣

AWeber MCP

by Community

Local

Manage AWeber subscriber lists, email broadcasts, autoresponders, and landing pages.

📣

GetResponse MCP

by Community

Local

Build and manage GetResponse email marketing campaigns, autoresponders, landing pages, and webinars.

🤖

Hume AI

by Hume AI

Local

Empathic Voice Interface powered by emotional intelligence. Build voice AI that understands and responds to human emotions.

🤖

Retell AI

by Retell AI

Local

Build, test, and deploy conversational voice AI agents. Create AI phone agents with natural conversations.

🤖

Bland AI

by Bland AI

Local

Send and receive phone calls with AI. Create autonomous AI phone agents for sales, support, and scheduling.

🎬

Restream

by Restream

Local

Multi-platform live streaming API. Broadcast simultaneously to 30+ platforms including YouTube, Twitch, and LinkedIn.

🎬

StreamYard

by StreamYard

Local

Browser-based live streaming and recording studio. Manage streams, guests, and branding via API.

🎬

Riverside.fm

by Riverside

Local

Studio-quality remote podcast and video recording. Access recordings, transcripts, and production tools via API.

💬

Sinch

by Sinch

Local

Cloud communications platform for SMS, voice, and messaging APIs. Send messages globally across 200+ countries.

🌐

Attio CRM MCP

by attio-community

Local

Attio modern CRM API — manage contacts, companies, deals, and custom objects with a flexible data model. Query relationship timelines, automate workflows, build custom lists, and sync enriched contact data for AI-assisted sales operations.

🌐

Close CRM MCP

by close-community

Local

Close CRM (close.io) API for inside sales — manage leads, contacts, opportunities, and activities. Log calls, emails, and SMS from within AI conversations. Query pipeline metrics, sequence performance, and sales activity reports.

🌐

Podium MCP

by podium-community

Local

Podium customer messaging platform API — manage SMS conversations, review requests, payment links, and webchat interactions. Automate lead response, review collection, and multi-location messaging workflows for local businesses.

💬

Twilio Video MCP

by community

Local

Manage Twilio Video rooms, recordings, and participants. Build AI-powered video communication workflows.

💬

Brevo (Sendinblue) MCP

by community

Local

Send transactional emails, SMS, and manage marketing campaigns through Brevo (formerly Sendinblue) API.

💬

WeChat Work (WeCom) MCP

by community

Local

Integrate with WeChat Work/WeCom for enterprise messaging, approval workflows, HR management, and customer contact in Chinese business environments.

💬

Feishu/Lark MCP

by community

Local

Connect to Feishu (Lark) for messaging, docs, calendar, task management, and bots in ByteDance's enterprise collaboration platform.

💬

Discord Bot API MCP

by community

Local

Build and control Discord bots — send messages, manage servers and roles, read channel history, and react to events via AI agents.

🔍

Reddit API MCP

by community

Local

Search Reddit posts, comments, and subreddits with AI — monitor brand mentions, trending topics, community sentiment, and AMAs.

📣

LinkedIn Marketing API MCP

by community

Local

Access LinkedIn APIs for profile data, job postings, company insights, and marketing campaign management through AI workflows.

💬

OneSignal Push Notifications MCP

by community

Local

Send push notifications, in-app messages, and SMS through OneSignal — manage segments, A/B tests, and delivery analytics via AI.

🌐

Lens Protocol Social MCP

by community

Local

Access Lens Protocol decentralized social graph for profiles, posts, comments, mirrors, and follower relationships on the Polygon-based Web3 social network.

💬

Talkdesk MCP

by community

Local

Integrate with Talkdesk cloud contact center — access call recordings and transcripts, manage agent queues and routing rules, query real-time and historical call metrics, handle voicemail, and trigger automated CX workflows.

💬

Genesys Cloud MCP

by community

Local

Connect to Genesys Cloud CX platform — manage queues, agents, and skills, retrieve interaction recordings, set up routing flows, query workforce management data, and automate outbound campaign orchestration.

💬

Intercom MCP

by community

Local

Automate Intercom customer messaging — create and update conversations, manage contacts and companies, trigger message campaigns, query inbox assignments and SLA stats, and sync conversation data with your CRM.

💬

Freshdesk MCP

by community

Local

Manage Freshdesk customer support ticketing — create, update, and close tickets, manage agents and groups, set SLA policies, query canned responses, fetch satisfaction ratings, and trigger ticket automation rules.

📣

Vero MCP

by community

Local

Automate Vero behavioral email platform — manage campaigns and email templates, trigger event-based messages, query subscriber attributes and tags, update user profiles, and retrieve campaign engagement statistics.

💬

Courier Notification MCP

by community

Local

Send and manage notifications via Courier — deliver multi-channel messages across email, SMS, push, Slack, and in-app, manage notification templates and routing rules, query delivery logs, and handle user notification preferences.

💬

Knock Notifications MCP

by community

Local

Build notification workflows with Knock — trigger cross-channel notification workflows, manage user preferences and subscriptions, query notification feed data for in-app inboxes, and manage digest batching schedules.

📣

Customer.io MCP

by community

Local

Automate Customer.io behavioral messaging — trigger and broadcast campaigns, manage customer attributes and events, query segment membership, update subscription preferences, and retrieve campaign performance metrics.

🌐

Rhapsody Health Integration MCP

by community

Local

Interface with Rhapsody healthcare integration engine — monitor message routes and acknowledgment queues, query HL7 v2 and FHIR transaction logs, manage communication point configurations, trigger route restarts, and retrieve error and audit trail data.

🔒

Barracuda Networks MCP

by community

Local

Email security and network protection via Barracuda API — manage email firewall policies and sender allow/block lists, retrieve threat logs and quarantine reports, query web filtering rules and user activity, manage backup jobs and recovery points, access intrusion detection alerts, configure ATP threat definitions, and monitor gateway performance metrics.

💬

Five9 MCP

by community

Local

Cloud contact center operations via Five9 API — query agent state and availability, retrieve call recordings and transcripts, manage IVR scripts and call routing rules, monitor real-time queue statistics and service level metrics, retrieve campaign lists and dialing rules, manage agent skills and routing domains, and access historical reporting and CX analytics.

💬

NICE CXone MCP

by community

Local

Enterprise contact center management via NICE CXone API — retrieve agent performance metrics and adherence data, query interaction recordings and analytics, manage workforce scheduling and forecasts, retrieve ACD routing configurations, access AI-driven coaching recommendations, monitor real-time dashboard data, manage omnichannel queues, and integrate CX data with CRM and BI platforms.

💬

GoTo Webinar MCP

by community

Local

Webinar management via GoTo Webinar API — create and manage webinars and sessions, retrieve registrant lists and attendance data, send invitations and reminders, access recording URLs and assets, retrieve poll and survey results, manage panelists and co-organizers, track engagement metrics and attendance reports, and integrate webinar data with CRM and marketing automation platforms.

💬

Demio MCP

by community

Local

Live webinar and virtual event management via Demio API — create and schedule webinars, manage registrations and attendees, retrieve real-time engagement data and analytics, access recording and replay links, manage featured actions and handouts, retrieve poll results and Q&A transcripts, automate post-event follow-up workflows, and integrate registration data with marketing platforms.

💬

BigMarker MCP

by community

Local

Enterprise webinar and virtual event platform via BigMarker API — create branded webinar series and conferences, manage registrant data and attendee engagement, access live polling and survey tools, retrieve recording and on-demand replay analytics, manage custom landing pages and email sequences, integrate with CRM and marketing automation, and access advanced audience insights and behavior tracking.

Doximity MCP

by community

Local

Access the Doximity physician network and clinical resources — search the US physician directory by specialty, institution, and location; retrieve NPI numbers and board certification data; access clinical decision support tools; send HIPAA-compliant messages to colleagues; retrieve peer-reviewed medical news and CME opportunities tailored to clinical specialty.

📋

Zendesk MCP

by community

Local

Integrate Zendesk customer support via the Zendesk API — query and manage tickets, assign agents, apply macros and tags, pull customer satisfaction scores, access help center articles, manage organizations and users, trigger automations, analyze support metrics by channel and team, and build dashboards across Zendesk Support, Guide, and Talk.

💬

OpenPhone MCP

by community

Local

Access OpenPhone business phone system via the OpenPhone API — manage contacts and phone numbers, query call logs and voicemails, send and receive SMS/MMS messages, track conversation history per contact, manage team members and number assignments, access call recordings and transcripts, set business hours and voicemail greetings, and pull communication analytics.

💬

Twilio Flex MCP

by community

Local

Integrate Twilio Flex contact center platform — manage agent tasks and queues, query interaction history across voice, SMS, and chat channels, configure routing workflows, access real-time dashboards and historical reports, manage Flex plugins and UI configurations, handle worker availability, pull customer journey analytics, and build omnichannel support automations.

📣

Cision

by Cision

Local

PR software and earned media platform. Access journalist database, press release distribution, and media monitoring in one integration.

📣

Prowly

by Prowly

Local

PR CRM and media relations platform. Manage press contacts, create newsrooms, distribute press releases, and track media coverage.

📣

Prezly

by Prezly

Local

PR software for building newsrooms and managing media relationships. Create multimedia press releases and track journalist engagement.

📣

Mynewsdesk

by Mynewsdesk

Local

Integrated PR and communications platform. Publish press releases to a newsroom, manage contacts, and track media coverage across channels.

💬

Zoom MCP

by community

Local

Manage Zoom meetings, recordings, webinars, users, and reports via the Zoom API. Schedule meetings and retrieve transcripts.

📋

MURAL Whiteboard MCP

by community

Local

Connect to MURAL digital whiteboards via the MURAL API — create and manage murals and workspaces, add sticky notes, shapes, and connectors, manage room membership, retrieve mural content, export boards, automate retrospective and workshop templates, and integrate visual collaboration into AI-assisted meeting facilitation and design thinking workflows.

💬

LiveChat MCP

by community

Local

Integrate LiveChat customer support operations via the LiveChat API — retrieve chat transcripts and customer history, access ongoing conversations, query agent availability and performance stats, manage canned responses, retrieve visitor data and chat ratings, pull analytics on response times, and build AI-assisted customer support automation and escalation workflows.

💬

Tawk.to Live Chat MCP

by community

Local

Connect to Tawk.to free live chat via the Tawk.to REST API — retrieve chat history and visitor conversations, access property settings, manage contacts and tickets, retrieve agent activity data, query messaging channels, and integrate free live chat data into AI customer service automation, CRM enrichment, and support analytics workflows.

Sponsored

ElevenLabs

Free Tier

The leading voice AI platform. Add lifelike text-to-speech to your Claude agents via the ElevenLabs MCP server.

Try ElevenLabs free →