Intercom Articles MCP Server

Intercom Articles MCP Server

An MCP server that enables full CRUD operations for Intercom Help Center articles, including support for multilingual content and state management. It allows users to list, retrieve, create, and update articles through natural language commands in MCP-compatible clients.

Category
Visit Server

README

Intercom Articles MCP Server

A Model Context Protocol (MCP) server for reading and writing Intercom Help Center articles.

Version

v0.2.0 - Full CRUD functionality with multilingual support

Features

  • get_article - Get a single article by ID
  • list_articles - List articles with pagination
  • create_article - Create new articles with multilingual content
  • update_article - Update existing articles with partial updates

Installation

  1. Clone the repository:
git clone https://github.com/kaosensei/intercom-articles-mcp.git
cd intercom-articles-mcp
  1. Install dependencies:
npm install
  1. Build the project:
npm run build

Configuration

Get Intercom Access Token

  1. Go to Intercom Settings → Developers → Developer Hub
  2. Create a new app or use existing one
  3. Get an Access Token with Articles read and write permissions

Configure Claude Desktop

Edit your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

Add this configuration:

{
  "mcpServers": {
    "intercom-articles": {
      "command": "node",
      "args": [
        "/ABSOLUTE/PATH/TO/intercom-articles-mcp/dist/index.js"
      ],
      "env": {
        "INTERCOM_ACCESS_TOKEN": "your_intercom_access_token_here"
      }
    }
  }
}

Important:

  • Replace /ABSOLUTE/PATH/TO/intercom-articles-mcp with your actual project path
  • Replace your_intercom_access_token_here with your actual token

Restart Claude Desktop

Completely quit Claude Desktop and restart it.

Usage

Once configured, you can use these commands in Claude Desktop:

List Articles

List Intercom articles

or

Show me the first 20 Intercom articles

Get Article Details

Get Intercom article with ID 9876543

Create Article

Create a new Intercom article titled "Getting Started Guide" with content "Welcome to our platform" by author ID 123456, save as draft

Update Article

Update article 9876543 and change its state to published

Tools Reference

get_article

Get a single article by ID.

Parameters:

  • id (string, required): Article ID

Example:

{
  "id": "9876543"
}

list_articles

List articles with pagination.

Parameters:

  • page (number, optional): Page number (default: 1)
  • per_page (number, optional): Articles per page (default: 10, max: 50)

Example:

{
  "page": 1,
  "per_page": 20
}

create_article

Create a new article with multilingual support.

Parameters:

  • title (string, required): Article title
  • body (string, required): Article content in HTML format
  • author_id (number, required): Author ID (must be a valid Intercom team member)
  • description (string, optional): Article description
  • state (string, optional): "draft" or "published" (default: "draft")
  • parent_id (string, optional): Collection or section ID
  • parent_type (string, optional): "collection" (default)
  • translated_content (object, optional): Multilingual content

Example (Simple):

{
  "title": "Getting Started Guide",
  "body": "<p>Welcome to our platform</p>",
  "author_id": 123456,
  "state": "draft"
}

Example (Multilingual):

{
  "title": "Getting Started Guide",
  "body": "<p>Welcome to our platform</p>",
  "author_id": 123456,
  "state": "published",
  "translated_content": {
    "zh-TW": {
      "title": "入門指南",
      "body": "<p>歡迎使用我們的平台</p>",
      "author_id": 123456,
      "state": "published"
    },
    "ja": {
      "title": "スタートガイド",
      "body": "<p>プラットフォームへようこそ</p>",
      "author_id": 123456,
      "state": "published"
    }
  }
}

update_article

Update an existing article. Only provided fields will be updated.

Parameters:

  • id (string, required): Article ID
  • title (string, optional): Updated title
  • body (string, optional): Updated content
  • description (string, optional): Updated description
  • state (string, optional): "draft" or "published"
  • author_id (number, optional): Updated author ID
  • translated_content (object, optional): Updated translations

Example (Change state):

{
  "id": "9876543",
  "state": "published"
}

Example (Update content):

{
  "id": "9876543",
  "title": "Updated Title",
  "body": "<p>Updated content</p>"
}

Example (Add translation):

{
  "id": "9876543",
  "translated_content": {
    "zh-TW": {
      "title": "更新的標題",
      "body": "<p>更新的內容</p>"
    }
  }
}

Development

Build

npm run build

Watch mode

npm run watch

Troubleshooting

Claude Desktop doesn't show the tools

  1. Check config file path is correct
  2. Verify JSON format (no trailing commas)
  3. Completely restart Claude Desktop
  4. Check absolute path to dist/index.js

API errors

  1. Verify your Access Token is correct
  2. Ensure token has Articles read permissions
  3. Check Intercom API status

Build errors

  1. Ensure TypeScript version >= 5.0
  2. Delete node_modules and dist, then:
npm install && npm run build

Project Structure

intercom-articles-mcp/
├── package.json           # Project configuration
├── tsconfig.json          # TypeScript configuration
├── src/
│   └── index.ts           # Main server code
├── dist/                  # Compiled output
└── README.md             # This file

Roadmap

Future versions may include:

  • ✅ Create Article (v0.2.0)
  • ✅ Update Article (v0.2.0)
  • ✅ Multilingual support (v0.2.0)
  • 🔜 Delete Article
  • 🔜 Search Articles
  • 🔜 Better error handling
  • 🔜 Modular file structure

Resources

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured