Search Help Scout conversations, customers, organizations, threads, and inboxes with AI assistants
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
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.
One-click install using Desktop Extensions. One install covers both Chat and Cowork sessions in the Claude desktop app.
.mcpb file from releasesIf the tools don't show up in a Cowork session, update the desktop app to the latest version and start a fresh session. (Cowork walkthrough)
Optional: add the helpscout-navigator skill so Claude picks the right operation faster. Go to Customize, click + > Add marketplace from GitHub, enter drewburchfield/help-scout-mcp-server, and install helpscout-navigator.
Register the server, then optionally add the helpscout-navigator skill, which teaches Claude to pick the right operation for each query.
Then, for the navigation skill:
/plugin marketplace add drewburchfield/help-scout-mcp-server/plugin install helpscout-navigatorThe server alone gives you the tools; the skill also teaches the AI how to use them well.
Add to your MCP client's config file (e.g., claude_desktop_config.json, .cursor/mcp.json):
Help Scout uses OAuth2 Client Credentials flow exclusively. Personal Access Tokens are not supported. The app authenticates as the user who created it, with that user's permissions; there is no separate scope selection, which is why the server's own write gating defaults to off.
| Help Scout UI | Environment Variable |
|---|---|
| App ID | HELPSCOUT_APP_ID |
| App Secret | HELPSCOUT_APP_SECRET |
Alternative names HELPSCOUT_CLIENT_ID / HELPSCOUT_CLIENT_SECRET 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.
The server advertises three tools that together reach every supported read operation (55 across the Mailbox and Docs APIs):
| Tool | Purpose |
|---|---|
search_help_scout | Find operations by intent ("customer conversation history", "happiness report") |
describe_help_scout | Load the full input schemas for the operations you selected |
read_help_scout | Execute one operation: { "name": "getThreads", "arguments": { ... } } |
This keeps the advertised surface small enough that AI clients don't drown in schemas, while every read capability stays one search away. Operations in the current registry also remain callable by name directly. Tool names removed in the v2.0.0 consolidation (for example comprehensiveConversationSearch, structuredConversationFilter, and searchInboxes) are not; their capabilities live in searchConversations and listAllInboxes.
An optional fourth tool, write_help_scout, appears only when an operator turns writes on. See Write operations (opt-in).
For the MCP compatibility contract and roadmap, see:
Run any of these via read_help_scout:
| Task | Operation | Example |
|---|---|---|
| List recent tickets | searchConversations | "Show me active tickets from this week" |
| Find by keyword | searchConversations (contentTerms) | "Find conversations about billing errors" |
| Look up a ticket number | searchConversations (conversationNumber) | "Show me ticket #42839" |
| Complex filters | searchConversations (emailDomain, tag) | "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 inbox fields, folders, or routing | getInbox (include) | "Show routing for inbox 359402" (include: ["routing"]) |
| 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.
A default install is read-only. It advertises the three tools above and nothing else, unchanged from 2.0. Writes exist only after an operator sets a flag.
| Flag | What it adds |
|---|---|
HELPSCOUT_ENABLE_WRITES=true | A fourth tool, write_help_scout, carrying 11 tier-1 conversation operations |
HELPSCOUT_ENABLE_CUSTOMER_VISIBLE_WRITES=true | Two more operations on that same tool: sendReply and publishDraft |
Tier 1 covers draft replies, internal notes, status changes, assign and unassign, adding and removing tags, custom field values, snooze and unsnooze, and moving a conversation to another inbox. None of it emails anyone: a draft is saved unsent, and a note is visible to teammates only.
Tier 2 is the only path that reaches a customer, and it needs both flags. Every call to sendReply or publishDraft must also carry confirmation naming the operation and the target:
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/help-scout-mcp-server)<a href="https://allmcps.com/mcp/help-scout-mcp-server"><img src="https://allmcps.com/api/badge/help-scout-mcp-server?style=directory" alt="Help Scout MCP Server on AllMCPs" /></a>