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

NameTypeRequiredDescription
statusstringno
inbox_idnumberno
tagstringno
querystringnoHelp Scout search expression such as (email:“[email protected]”)
modified_sincestringnoISO 8601 timestamp
pagenumberno

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.

Regenerated from source · build August 9, 2026