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
| Name | Type | Required | Description |
|---|---|---|---|
per_page | number | no | Results per page (default 20) |
page | number | no | Page 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
| Field | Type | Description |
|---|---|---|
data | array | List of companies |
pages | object | Pagination metadata |
error | string | Error code if connection required |
message | string | Error 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.