Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-server-for-intercom": {
"args": [
"-y",
"mcp-server-for-intercom"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP-compliant server that enables AI assistants to access and analyze customer support data from Intercom.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'mcp-server-for-intercom' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mcp-server-for-intercom against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
Email & SMS infrastructure for AI agents — send and receive real email and text messages programmatically
A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server For Intercom and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP-compliant server that enables AI assistants to access and analyze customer support data from Intercom.
# Install the package globally
npm install -g mcp-server-for-intercom
# Set your Intercom API token
export INTERCOM_ACCESS_TOKEN="your_token_here"
# Run the server
intercom-mcp
The default Docker configuration is optimized for Glama compatibility:
# Start Docker (if not already running)
# On Windows: Start Docker Desktop application
# On Linux: sudo systemctl start docker
# Build the image
docker build -t mcp-intercom .
# Run the container with your API token and port mappings
docker run --rm -it -p 3000:3000 -p 8080:8080 -e INTERCOM_ACCESS_TOKEN="your_token_here" mcp-intercom:latest
Validation Steps:
# Test the server status
curl -v http://localhost:8080/.well-known/glama.json
# Test the MCP endpoint
curl -X POST -H "Content-Type: application/json" -d '{"jsonrpc":"2.0","id":1,"method":"mcp.capabilities"}' http://localhost:3000
If you prefer a lighter version without Glama-specific dependencies:
# Build the standard image
docker build -t mcp-intercom-standard -f Dockerfile.standard .
# Run the standard container
docker run --rm -it -p 3000:3000 -p 8080:8080 -e INTERCOM_ACCESS_TOKEN="your_token_here" mcp-intercom-standard:latest
The default version includes specific dependencies and configurations required for integration with the Glama platform, while the standard version is more lightweight.
list_conversationsRetrieves all conversations within a date range with content filtering.
Parameters:
startDate (DD/MM/YYYY) – Start date (required)endDate (DD/MM/YYYY) – End date (required)keyword (string) – Filter to include conversations with this textexclude (string) – Filter to exclude conversations with this textNotes:
Example:
{
"startDate": "15/01/2025",
"endDate": "21/01/2025",
"keyword": "billing"
}
search_conversations_by_customerFinds conversations for a specific customer.
Parameters:
customerIdentifier (string) – Customer email or Intercom ID (required)startDate (DD/MM/YYYY) – Optional start dateendDate (DD/MM/YYYY) – Optional end datekeywords (array) – Optional keywords to filter by contentNotes:
Example:
{
"customerIdentifier": "customer@example.com",
"startDate": "15/01/2025",
"endDate": "21/01/2025",
"keywords": ["billing", "refund"]
}
search_tickets_by_statusRetrieves tickets by their status.
Parameters:
status (string) – "open", "pending", or "resolved" (required)startDate (DD/MM/YYYY) – Optional start dateendDate (DD/MM/YYYY) – Optional end dateExample:
{
"status": "open",
"startDate": "15/01/2025",
"endDate": "21/01/2025"
}