[FREE TOOL]
Connect a support inbox to the AI in your code editor in one paste. Pick your editor, drop in your key, and copy the exact MCP config for the right file. Then the agent in Cursor, Claude Code, Windsurf or VS Code can read a customer conversation, fix the bug, and reply, without leaving the editor.
Your editor
How the server shows up in your editor. Becomes muro.
Built in your browser, never sent anywhere. Leave blank to copy the shape and add the key later.
Paste this into .mcp.json at the root of your project, then restart Claude Code.
{
"mcpServers": {
"muro": {
"type": "http",
"url": "https://muro.chat/api/mcp",
"headers": {
"Authorization": "Bearer mr_live_xxxxxxxxxxxxxxxxxxxx"
}
}
}
}Or add it from the terminal:
claude mcp add --transport http muro https://muro.chat/api/mcp --header "Authorization: Bearer mr_live_xxxxxxxxxxxxxxxxxxxx"What your agent can do once connected
list_conversationslist and filter your inboxget_conversationread a full threadsend_replywritereply to the visitorupdate_conversationwritestatus, tags, assignee, mark readlist_contactslist the people who wrote inget_contactread one contactlist_siteslist your projectsupdate_sitewriteconfigure a widgetReading needs a read key; replying and updating need a read and write key. Create one in your muro workspace under API keys.
What is an MCP server and why connect one to my editor?
MCP, the Model Context Protocol, is a standard way for AI tools to talk to outside systems. A support MCP server exposes your customer inbox as tools the AI in your editor can call. So instead of alt-tabbing to a dashboard, you ask the agent in your editor to pull up a bug report, read the whole conversation, fix the code, and reply to the customer, all in one place.
Which editors does this generator support?
Claude Code, Cursor, Windsurf, VS Code, and Claude Desktop. Each one reads its config from a different file and uses a slightly different shape, so the generator outputs the right snippet for the file the editor actually loads, plus a terminal install command where the editor has one.
Is it safe to paste my API key here?
Yes. The generator runs entirely in your browser and builds the config locally, so the key is never sent to any server. You can also leave the placeholder, copy the shape, and swap your real key in afterward. Since the finished config holds the key in clear, treat that file like a secret and add it to your .gitignore.
What can the AI agent actually do once it is connected?
It exposes eight tools: list and read conversations, send a reply to the visitor, triage a conversation (status, tags, assignee, mark read), list and read contacts, and list and configure the chat widget on each site. Reading needs a read key; replying and triaging need a read and write key.
Do I need a muro account to use this tool?
You need a key only to make a live connection. The generator itself is free and needs no signup; without a key it produces the exact config with a placeholder so you can see the shape, wire it up, and add a key later from your muro workspace.
New to the idea? Read connect support tickets to Cursor with MCP, or see the AI support cost calculator.