diff --git a/forge/ee/lib/mcp/tools/applications.js b/forge/ee/lib/mcp/tools/applications.js index c79bb502ab..2eec864337 100644 --- a/forge/ee/lib/mcp/tools/applications.js +++ b/forge/ee/lib/mcp/tools/applications.js @@ -77,7 +77,7 @@ module.exports = [ Creates a new application in a team. An application is a container that groups together hosted instances and remote instances that work together. Before invoking this tool, call platform_list_applications for this team to check whether an application with this name already exists. If one exists, ask the user whether to use the existing one or create a new one with the same name - DO NOT create a duplicate application without asking first. - After the application is created, ask the user if they want to be taken to it. If they do, use the ui_navigate tool with the route name "Application" and params { id: }.`, + After the application is created, ask the user if they want to be taken to it. If they do, use the ui_navigate tool with the route name "application" and params { id: }.`, annotations: { readOnlyHint: false, destructiveHint: false }, inputSchema: { name: z.string().describe('Name for the new application'), diff --git a/frontend/src/api/team.ts b/frontend/src/api/team.ts index 9f235e98ae..01021fd1ee 100644 --- a/frontend/src/api/team.ts +++ b/frontend/src/api/team.ts @@ -160,7 +160,7 @@ const getTeamInstances = async (teamId: string) => { res.data.projects = res.data.projects.map(r => { r.createdSince = daysSince(r.createdAt) r.updatedSince = daysSince(r.updatedAt) - r.link = { name: 'Application', params: { id: r.id } } + r.link = { name: 'application', params: { id: r.id } } promises.push(client.get(`/api/v1/projects/${r.id}`).then(p => { r.status = p.data.meta.state r.flowLastUpdatedAt = p.data.flowLastUpdatedAt @@ -183,7 +183,7 @@ const getTeamDashboards = async (teamId: string) => { r.updatedSince = daysSince(r.updatedAt) r.flowLastUpdatedSince = daysSince(r.flowLastUpdatedAt) - r.link = { name: 'Application', params: { id: r.id } } + r.link = { name: 'application', params: { id: r.id } } return r }) diff --git a/frontend/src/components/DevicesBrowser.vue b/frontend/src/components/DevicesBrowser.vue index a0c133e29f..262d7fa584 100644 --- a/frontend/src/components/DevicesBrowser.vue +++ b/frontend/src/components/DevicesBrowser.vue @@ -239,7 +239,7 @@ Here, you will see a list of Devices belonging to this Application.

- You can deploy Snapshots of this Application to your connected Devices. + You can deploy Snapshots of this Application to your connected Devices.

A full list of your Team's Devices are available