ic_list_companies

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

List companies with pagination. Returns company ID, name, website, employee count, and custom attributes.

Parameters

NameTypeRequiredDescription
per_pagenumbernoResults per page (default 20)
pagenumbernoPage number

Example call

Arguments

{
  "per_page": 20
}

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_list_companies","arguments":{"per_page":20}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('ic_list_companies', {
  "per_page": 20
});

More examples

{
  "per_page": 50,
  "page": 2
}

Response shape

FieldTypeDescription
dataarrayList of companies
pagesobjectPagination metadata
errorstringError code if connection required
messagestringError message if connection required
Full JSON Schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "List of companies",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Company ID"
          },
          "name": {
            "type": "string",
            "description": "Company name"
          },
          "website": {
            "type": "string",
            "description": "Company website URL"
          },
          "employee_count": {
            "type": "number",
            "description": "Number of employees"
          },
          "custom_attributes": {
            "type": "object",
            "description": "Custom company attributes"
          }
        }
      }
    },
    "pages": {
      "type": "object",
      "description": "Pagination metadata"
    },
    "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 May 9, 2026