helpscout_list_conversations
Pack: help-scout · Endpoint: https://gateway.pipeworx.io/help-scout/mcp
Return a bounded Help Scout conversation page with subject, customer, inbox, assignee, tags, status, waiting time, and timestamps. Answers which support requests match an account, status, inbox, tag, or search expression.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
status | string | no | |
inbox_id | number | no | |
tag | string | no | |
query | string | no | Help Scout search expression such as (email:“[email protected]”) |
modified_since | string | no | ISO 8601 timestamp |
page | number | no |
Example call
Arguments
{
"_apiKey": "your-helpscout-oauth-access-token",
"status": "pending",
"page": 1
}
curl
curl -X POST https://gateway.pipeworx.io/help-scout/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"helpscout_list_conversations","arguments":{"_apiKey":"your-helpscout-oauth-access-token","status":"pending","page":1}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('helpscout_list_conversations', {
"_apiKey": "your-helpscout-oauth-access-token",
"status": "pending",
"page": 1
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"help-scout": {
"url": "https://gateway.pipeworx.io/help-scout/mcp"
}
}
}
See Getting Started for client-specific install steps.