home / mcp / intercom articles mcp server
Provides CRUD access to Intercom Help Center articles with multilingual support via an MCP interface.
Configuration
View docs{
"mcpServers": {
"kaosensei-intercom-articles-mcp": {
"command": "node",
"args": [
"/ABSOLUTE/PATH/TO/intercom-articles-mcp/dist/index.js"
],
"env": {
"INTERCOM_ACCESS_TOKEN": "your_intercom_access_token_here"
}
}
}
}You can run the Intercom Articles MCP Server to enable reading, creating, listing, and updating multilingual Intercom Help Center articles via a Model Context Protocol (MCP) interface. This server exposes core article management operations and integrates with your client workflows to manage content programmatically.
You will connect to the MCP server from your MCP client by using the provided stdio configuration. Start the server as described, then issue commands to perform create, read, update, and list operations on Intercom articles. The server receives requests and returns structured responses for each operation, including multilingual content when present.
Prerequisites you need before installing include Node.js installed on your system. You should also have access to an Intercom access token with Articles read and write permissions.
Configure the client to connect to the MCP server by using the provided runtime command and environment variables. The server requires your Intercom access token to authorize requests.
Protect your Intercom access token. Do not share it publicly and rotate it if you suspect it has been exposed. Use the token only in trusted environments.
The server supports multilingual article content, enabling translations for supported languages. Use the translation mappings to manage localized article data.
If the MCP client cannot reach the server, verify that the Node process is running and that the path to the compiled entry point matches your environment. Ensure the Intercom access token is correct and has the necessary permissions.
Retrieve a single article by its ID.
List articles with pagination support.
Create a new article, optionally with multilingual content.
Update an existing article with provided fields.