other
Helpscout MCP Integration for Codex
Connect Helpscout to Codex through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Helpscout to Codex
Use KosmoKrator as a local MCP proxy for Codex so coding sessions can reach selected integrations with explicit write policy.
Register kosmo mcp:serve as a local stdio server and choose the integration allowlist. The gateway is local, scoped to this integration, and starts with
--write=deny so Codex can inspect read-capable tools without receiving write access by default.
Helpscout MCP Config for Codex
Keep write access denied or ask-based unless the workspace is trusted.
{
"mcpServers": {
"kosmokrator-helpscout": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=helpscout",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=helpscout --write=deny Why Use KosmoKrator Here
Expose only Helpscout instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Helpscout Tools Visible to Codex
Codex sees stable MCP tool names generated from the Helpscout integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__helpscout__helpscout_list_conversations | helpscout.helpscout_list_conversations | Read | List support conversations from HelpScout. Supports filtering by mailbox, status, assignee, customer, and more. Returns paginated results. |
integration__helpscout__helpscout_get_conversation | helpscout.helpscout_get_conversation | Read | Get full details of a specific HelpScout conversation, including threads, customer info, and custom fields. |
integration__helpscout__helpscout_create_conversation | helpscout.helpscout_create_conversation | Write | Create a new conversation in HelpScout. Requires a subject, customer, mailbox, and at least one thread (message or note). |
integration__helpscout__helpscout_update_conversation | helpscout.helpscout_update_conversation | Write | Update an existing HelpScout conversation. Change status, assignee, tags, subject, or other fields. |
integration__helpscout__helpscout_list_customers | helpscout.helpscout_list_customers | Read | List or search customers in HelpScout. Supports filtering by name, email, and pagination. |
integration__helpscout__helpscout_get_customer | helpscout.helpscout_get_customer | Read | Get full details of a specific HelpScout customer, including contact info, social profiles, and custom fields. |
integration__helpscout__helpscout_create_customer | helpscout.helpscout_create_customer | Write | Create a new customer in HelpScout. Provide at least a name or email address. |
integration__helpscout__helpscout_list_mailboxes | helpscout.helpscout_list_mailboxes | Read | List all mailboxes in HelpScout. Returns mailbox IDs, names, and email addresses. Use mailbox IDs when creating or filtering conversations. |
integration__helpscout__helpscout_get_mailbox | helpscout.helpscout_get_mailbox | Read | Get details of a specific HelpScout mailbox, including name, email, folders, and user assignments. |
integration__helpscout__helpscout_get_current_user | helpscout.helpscout_get_current_user | Read | Get the profile of the currently authenticated HelpScout user. Useful for verifying API connectivity and identifying the active account. |