Let Claude run your automation.
A one-click remote MCP connector. Add the URL to Claude Desktop and your assistant can configure and drive your n8n Cloud workspace autonomously.
https://connect.bybloomlabs.com/api/mcpConnect in Claude Desktop
- Open Settings → Connectors → Add custom connector.
- Paste the connector URL above and save.
- Enable the connector in a conversation.
- Ask Claude to run
configure_n8nwith your n8n Cloud URL and API key. - Claude can now list, create, update, activate and trigger your workflows and read executions.
Your n8n key is validated, encrypted at rest and never exposed to the browser or logs.
configure_n8nValidate and securely store the n8n Cloud base URL and API key for this workspace. Call this first. The base URL looks like https://<your-subdomain>.app.n8n.cloud
configure_emailitSecurely store the Emailit API key and verified From address used for email/lead notifications.
n8n_connection_statusReport whether n8n and Emailit are configured, and ping n8n to confirm the credentials work.
n8n_list_workflowsList workflows in the n8n instance. Supports pagination via cursor and filtering by active state.
n8n_get_workflowGet a single workflow's full JSON (nodes, connections, settings) by id.
n8n_create_workflowCreate a new workflow. Pass a full n8n workflow object with name, nodes, connections and settings.
n8n_update_workflowReplace an existing workflow's definition by id. Send the complete workflow object.
n8n_activate_workflowActivate a workflow by id so its triggers run in production.
n8n_deactivate_workflowDeactivate a workflow by id.
n8n_list_executionsList recent workflow executions. Optionally filter by workflow id and status (success, error, waiting).
n8n_get_executionGet a single execution by id. Set include_data true to fetch the full run data.
n8n_trigger_webhookTrigger an n8n workflow via its production webhook URL (https only), with an optional JSON payload.
send_lead_notificationSend a lead notification email via Emailit to one or more recipients.
