From 414e8008fbc52be1ad9bd4b5dfdaae829d42aef7 Mon Sep 17 00:00:00 2001 From: Sergio Serrano Date: Mon, 6 Jul 2026 16:10:07 -0300 Subject: [PATCH 1/2] fix: point gateway-setup deep link at /mcp-gateways/new MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The dashboard moved gateway creation to a dedicated /mcp-gateways/new page and dropped the list route's ?create / ?tools params (ArcadeAI/monorepo#1904). Update the post-scaffold 'create your MCP gateway' link to /mcp-gateways/new?tools=…; the JSON-encoded tools param is unchanged and parses on the new route. --- src/post-scaffold.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/post-scaffold.ts b/src/post-scaffold.ts index 7c1ce53..ed0e307 100644 --- a/src/post-scaffold.ts +++ b/src/post-scaffold.ts @@ -8,7 +8,7 @@ import { runAsync } from "./utils.js"; import type { TemplateMeta } from "./types.js"; const GATEWAY_SETUP_URL = - "https://app.arcade.dev/mcp-gateways?create=true&tools=" + + "https://app.arcade.dev/mcp-gateways/new?tools=" + encodeURIComponent( JSON.stringify([ "Slack.ListConversations", From 0a062cf79c13df907484005138dd230da171bf56 Mon Sep 17 00:00:00 2001 From: Sergio Serrano Date: Tue, 7 Jul 2026 12:33:45 -0300 Subject: [PATCH 2/2] Bump version to 0.5.7 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 22e8c4f..a84a99f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@arcadeai/create-agent", - "version": "0.5.6", + "version": "0.5.7", "type": "module", "description": "Scaffold an Arcade-powered AI agent", "license": "MIT",