Intercom MCP Server

Communicationstdiov0.1.0
Repository

MCP server for Intercom. Lets AI agents search and read conversations and contacts, retrieve message history, and query help-center articles via the Intercom API. Useful for support analytics, conversation summarization, and building assistants that reason over customer communications.

Connect

Add this configuration to .claude/mcp.json

{
  "mcpServers": {
    "intercom": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-intercom"
      ],
      "env": {
        "INTERCOM_ACCESS_TOKEN": "<YOUR_INTERCOM_ACCESS_TOKEN>"
      }
    }
  }
}

Tools (2)

search_conversations

Search Intercom conversations by query and filters (date, state, contact).

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Search query"
    }
  }
}

get_conversation

Retrieve a full Intercom conversation thread by ID.

{
  "type": "object",
  "required": [
    "conversation_id"
  ],
  "properties": {
    "conversation_id": {
      "type": "string",
      "description": "Intercom conversation ID"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
Fabian Piau (@fabianpiau)
Repository
https://github.com/fabian1710/mcp-intercom
License
MIT
Version
0.1.0
Stars
140
Last Updated
July 9, 2026