ic_get_contact

Pack: intercom · Endpoint: https://gateway.pipeworx.io/intercom/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ic_get_contact for the schema, then POST the same URL with its arguments for the data.

Get full contact details by ID. Returns name, email, phone, attributes, tags, and conversation history.

Parameters

NameTypeRequiredDescription
idstringyesContact 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

FieldTypeDescription
idstringContact ID
namestringContact name
emailstringContact email address
phonestringContact phone number
custom_attributesobjectCustom contact attributes
tagsobject
conversationsobjectConversation history
errorstringError code if connection required
messagestringError 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.

Regenerated from source · build September 22, 2026