From helpscout-navigator
Runs locally (stdio) to provide Claude access to HelpScout customer support platform for tickets, conversations, and related queries. Requires HelpScout app ID and secret.
npx claudepluginhub drewburchfield/help-scout-mcp-server --plugin helpscout-navigatorAdd to your .mcp.json:
{
"mcpServers": {
"helpscout": {
"command": "npx",
"args": [
"-y",
"help-scout-mcp-server"
],
"env": {
"HELPSCOUT_APP_ID": "${HELPSCOUT_APP_ID}",
"HELPSCOUT_APP_SECRET": "${HELPSCOUT_APP_SECRET}",
"REDACT_MESSAGE_CONTENT": "${REDACT_MESSAGE_CONTENT:-false}"
}
}
}
}Replace placeholder values for: HELPSCOUT_APP_SECRET
This MCP server needs API keys or credentials. Configure them in your environment before use.
npxHELPSCOUT_APP_ID=${HELPSCOUT_APP_ID}HELPSCOUT_APP_SECRET=${HELPSCOUT_APP_SECRET}REDACT_MESSAGE_CONTENT=${REDACT_MESSAGE_CONTENT:-false}