
Help Scout MCP Server
- 46 repo stars
- Updated July 20, 2026
- drewburchfield/help-scout-mcp-server
Help Scout MCP Server is an MCP server that lets AI assistants search Help Scout conversations, customers, organizations, threads, and inboxes.
About
Help Scout MCP Server wraps the Help Scout API so AI assistants can query the same objects support teams use daily—conversations, customers, organizations, threads, and inboxes—without custom scripts in every repo. SaaS founders wearing the support hat can ask an agent to summarize a customer history, find related tickets, or pull inbox metadata before replying in Help Scout or their own dashboard. Registration uses the published npm package with stdio transport and requires OAuth2 application credentials as HELPSCOUT_APP_ID and HELPSCOUT_APP_SECRET, with common alias env names also accepted. Teams that must limit PII exposure can set REDACT_MESSAGE_CONTENT to strip message bodies from tool responses while still navigating metadata. On Skillselion this is a grow/support integration: it does not replace Help Scout’s UI for sending mail, but it makes your coding agent a research layer on top of existing Help Scout data during incidents, onboarding questions, and content updates driven by real user pain.
- OAuth2 Help Scout access via HELPSCOUT_APP_ID and HELPSCOUT_APP_SECRET (CLIENT_ID/SECRET aliases supported)
- Search conversations, customers, organizations, threads, and inboxes from MCP tools
- npx stdio package help-scout-mcp-server (v1.7.0) with npm registry install path
- Optional REDACT_MESSAGE_CONTENT flag to hide message bodies for compliance-sensitive agents
Help Scout MCP Server by the numbers
- Data as of Jul 26, 2026 (Skillselion catalog sync)
claude mcp add --env HELPSCOUT_APP_ID=YOUR_HELPSCOUT_APP_ID --env HELPSCOUT_APP_SECRET=YOUR_HELPSCOUT_APP_SECRET --env REDACT_MESSAGE_CONTENT=YOUR_REDACT_MESSAGE_CONTENT help-scout-mcp-server -- npx -y help-scout-mcp-serverAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 46 |
|---|---|
| Package | help-scout-mcp-server |
| Transport | STDIO |
| Auth | Required |
| Last updated | July 20, 2026 |
| Repository | drewburchfield/help-scout-mcp-server ↗ |
What it does
Search Help Scout conversations, customers, and inboxes from your agent while drafting replies or debugging customer issues.
Who is it for?
Best when you're on Help Scout and want MCP search across mailboxes without building a private API client from scratch.
Skip if: Skip if you're not on Help Scout, or orgs that cannot store OAuth app secrets in local MCP config.
What you get
After you add the server with OAuth credentials, your agent can query Help Scout objects in-thread so support research stays next to your code and deploy work.
- Structured search results for Help Scout conversations, customers, orgs, threads, and inboxes
- Compliance-friendly responses when message redaction is enabled
- In-agent support context usable while you patch product issues
By the numbers
- MCP server version 1.7.0 published as npm package help-scout-mcp-server with stdio transport
README.md
An MCP server that gives AI assistants direct access to your Help Scout inboxes, conversations, customers, organizations, threads, and Docs knowledge base. Search tickets, pull customer and account context, inspect articles, spot patterns, and get answers without leaving your editor or chat window.
Built by a Help Scout customer who wanted to give his support team superpowers. If you handle customer conversations in Help Scout and want AI to help you work faster, this is for you.
What You Can Do
- Search conversations by keyword, date range, status, tag, email domain, or ticket number
- Look up customers by name, advanced query syntax, or exact email address
- Explore organizations with direct customer and conversation traversal
- Inspect conversation detail with raw ticket metadata, summaries, full threads, attachments, and original source
- Pull full thread history into context before drafting a reply
- Get conversation summaries with the original customer message and latest staff response
- Search and retrieve Docs articles from the separate Help Scout Docs API
- Pull Help Scout reports and metadata for company, conversations, Docs, channels, productivity, happiness, users, teams, system users, statuses, routing, and webhooks
- Monitor inbox activity across multiple inboxes with a single query
- Reduce message payloads with optional message content redaction and scoped inbox access
Quick Start
Claude Cowork (Recommended)
Install the helpscout-navigator plugin. It auto-starts the MCP server and includes navigation skills that help Claude pick the right search tool for your query.
- Open Cowork and go to Customize > Browse plugins > Personal
- Click + > Add marketplace from GitHub and enter
drewburchfield/help-scout-mcp-server - Install helpscout-navigator from the marketplace
- Add your Help Scout credentials (step-by-step guide)
The plugin bundles guided skills, session hooks, and tool selection guidance on top of the MCP server. Other install methods give you the tools; this one also teaches the AI how to use them well.
Claude Desktop
One-click install using Desktop Extensions:
- Download the latest
.mcpbfile from releases - Double-click to install (or drag into Claude Desktop)
- Enter your Help Scout App ID and App Secret when prompted
Claude Code
The same helpscout-navigator plugin works in Claude Code with the same navigation skills.
- Run
/pluginin Claude Code to open the marketplace - Search for helpscout-navigator and install it
- Set
HELPSCOUT_APP_IDandHELPSCOUT_APP_SECRETas environment variables - Restart Claude Code
For Cursor, VS Code, and Other MCP Clients
Add to your MCP client's config file (e.g., claude_desktop_config.json, .cursor/mcp.json):
{
"mcpServers": {
"helpscout": {
"command": "npx",
"args": ["help-scout-mcp-server"],
"env": {
"HELPSCOUT_APP_ID": "your-app-id",
"HELPSCOUT_APP_SECRET": "your-app-secret"
}
}
}
}
Docker
docker run -e HELPSCOUT_APP_ID="your-app-id" \
-e HELPSCOUT_APP_SECRET="your-app-secret" \
drewburchfield/help-scout-mcp-server
Getting Your API Credentials
- Go to Help Scout > My Apps > Create Private App
- Select at minimum: Read access to Mailboxes, Conversations, Customers, and Organizations
- Copy your App ID and App Secret
Help Scout uses OAuth2 Client Credentials flow exclusively. Personal Access Tokens are not supported.
| Help Scout UI | Environment Variable |
|---|---|
| App ID | HELPSCOUT_APP_ID |
| App Secret | HELPSCOUT_APP_SECRET |
Alternative names HELPSCOUT_CLIENT_ID / HELPSCOUT_CLIENT_SECRET and legacy HELPSCOUT_API_KEY are also supported.
Docs knowledge base tools use Help Scout Docs API v1, which is separate from the Mailbox API. Set HELPSCOUT_DOCS_API_KEY only if you want to use listDocs*, searchDocsArticles, getDocsArticle, or redirect tools.
Tools
For the MCP compatibility contract and roadmap, see:
Which tool should I use?
| Task | Tool | Example |
|---|---|---|
| List recent tickets | searchConversations |
"Show me active tickets from this week" |
| Find by keyword | comprehensiveConversationSearch |
"Find conversations about billing errors" |
| Look up a ticket number | structuredConversationFilter |
"Show me ticket #42839" |
| Complex filters | advancedConversationSearch |
"All @acme.com conversations tagged urgent" |
| Browse customers | listCustomers |
"Show customers named Jane" |
| Find a customer by email | searchCustomersByEmail |
"Find customer jane@acme.com" |
| Inspect a customer profile | getCustomer |
"Open customer 12345" |
| Pull customer contact channels | getCustomerContacts |
"Show contact details for customer 12345" |
| Browse organizations | listOrganizations |
"Show the busiest organizations" |
| Inspect an organization | getOrganization |
"Open organization 456" |
| List customers in an organization | getOrganizationMembers |
"Who belongs to organization 456?" |
| List organization conversations | getOrganizationConversations |
"Show support history for organization 456" |
| Raw conversation detail | getConversation |
"Open conversation 12345 with full metadata" |
| Quick conversation overview | getConversationSummary |
"Summarize this conversation" |
| Full message history | getThreads |
"Show me the complete thread" |
| Inspect routing state | getInboxRouting |
"Show routing for inbox 359402" |
| Search Docs articles | searchDocsArticles |
"Find knowledge base articles about refunds" |
| Retrieve a Docs article | getDocsArticle |
"Open Docs article 123" |
| Current MCP host time | getServerTime |
Used for time-relative searches |
Inboxes are auto-discovered when the server connects. AI agents get inbox IDs in their instructions automatically, so no lookup step is needed.
Configuration
| Variable | Description | Default |
|---|---|---|
HELPSCOUT_APP_ID |
App ID from Help Scout My Apps | Required |
HELPSCOUT_APP_SECRET |
App Secret from Help Scout My Apps | Required |
HELPSCOUT_DEFAULT_INBOX_ID |
Scope searches to a specific inbox | None (all inboxes) |
HELPSCOUT_BASE_URL |
Help Scout API endpoint | https://api.helpscout.net/v2/ |
HELPSCOUT_DOCS_API_KEY |
Optional Docs API key for knowledge base tools | None |
HELPSCOUT_DOCS_BASE_URL |
Help Scout Docs API endpoint | https://docsapi.helpscout.net/v1/ |
REDACT_MESSAGE_CONTENT |
Replace message bodies with placeholders | false |
CACHE_TTL_SECONDS |
Cache duration for API responses | 300 |
LOG_LEVEL |
Logging verbosity (error, warn, info, debug) |
info |
Compatibility
Works with any MCP-compatible client:
| Category | Clients |
|---|---|
| AI Assistants | Claude Desktop, Goose, and other MCP-enabled assistants |
| Code Editors | Cursor, VS Code, Windsurf, Continue.dev |
| Command Line | Claude Code, Codex, Gemini CLI, OpenCode |
| Custom | Any application implementing the MCP standard |
Security and Privacy
Built with security-minded teams in mind:
- Optional message content redaction. Message bodies are included by default. Set
REDACT_MESSAGE_CONTENT=trueto replace conversation and thread bodies with placeholders for lower-context analysis. This is not a compliance boundary and does not remove all customer identifiers. - Secure authentication. OAuth2 Client Credentials with automatic token refresh.
- Rate limit handling. Automatic retry with exponential backoff on 429 responses.
- Scoped access. Optional default inbox configuration limits what the AI can search.
Troubleshooting
Authentication failed? Verify your credentials work with Help Scout directly:
curl -X POST https://api.helpscout.net/v2/oauth2/token \
-d "grant_type=client_credentials&client_id=$HELPSCOUT_APP_ID&client_secret=$HELPSCOUT_APP_SECRET"
Empty search results? Common causes:
- Using the wrong search tool (use
searchConversationsfor listing,comprehensiveConversationSearchfor keyword search) - Inbox ID mismatch. Check the IDs from server instructions, not guessed values.
- Search terms too narrow. Try broader terms or a longer time range.
Need more detail? Enable debug logging:
LOG_LEVEL=debug npx help-scout-mcp-server
Development
git clone https://github.com/drewburchfield/help-scout-mcp-server.git
cd help-scout-mcp-server
npm install && npm run build
npm start
npm test # Run tests
npm run type-check # TypeScript validation
npm run lint # Linting
npm run dev # Development server with auto-reload
Contributions welcome. Please ensure tests, type checking, and linting pass before submitting a PR.
Support
License
MIT License - see LICENSE for details.
Recommended MCP Servers
How it compares
Help Scout read/search MCP integration, not a full ticketing replacement or a code-review skill.
FAQ
Who is Help Scout MCP Server for?
It is for and small-team developers who run customer support in Help Scout and want Claude Code, Cursor, or similar agents to search conversations and account data via MCP.
When should I use Help Scout MCP Server?
Use it during grow/support when you are debugging user-reported issues, preparing replies, or auditing customer history without leaving your agent session.
How do I add Help Scout MCP Server to my agent?
Create a Help Scout OAuth app, set HELPSCOUT_APP_ID and HELPSCOUT_APP_SECRET in your MCP config, run the npm stdio server help-scout-mcp-server (often via npx), and optionally set REDACT_MESSAGE_CONTENT for compliance.