ic_get_contact
Pack: intercom · Endpoint: https://gateway.pipeworx.io/intercom/mcp
Get full contact details by ID. Returns name, email, phone, attributes, tags, and conversation history.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Contact ID |
Example call
Arguments
{
"id": "507f1f77bcf86cd799439011"
}
curl
curl -X POST https://gateway.pipeworx.io/intercom/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ic_get_contact","arguments":{"id":"507f1f77bcf86cd799439011"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ic_get_contact', {
"id": "507f1f77bcf86cd799439011"
});
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Contact ID |
name | string | Contact name |
email | string | Contact email address |
phone | string | Contact phone number |
custom_attributes | object | Custom contact attributes |
tags | object | |
conversations | object | Conversation history |
error | string | Error code if connection required |
message | string | Error message if connection required |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Contact ID"
},
"name": {
"type": "string",
"description": "Contact name"
},
"email": {
"type": "string",
"description": "Contact email address"
},
"phone": {
"type": "string",
"description": "Contact phone number"
},
"custom_attributes": {
"type": "object",
"description": "Custom contact attributes"
},
"tags": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
}
},
"conversations": {
"type": "object",
"description": "Conversation history"
},
"error": {
"type": "string",
"description": "Error code if connection required"
},
"message": {
"type": "string",
"description": "Error message if connection required"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"intercom": {
"url": "https://gateway.pipeworx.io/intercom/mcp"
}
}
}
See Getting Started for client-specific install steps.