@hoststack.dev/mcp 0.10.1 → 0.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1990,7 +1990,9 @@ defineTool({
1990
1990
  },
1991
1991
  handler: async (args, ctx) => {
1992
1992
  const teamId = await ctx.resolveTeamId();
1993
- const input = { name: args.name };
1993
+ const input = {
1994
+ name: args.name
1995
+ };
1994
1996
  if (args.description !== void 0) input.description = args.description;
1995
1997
  if (args.region !== void 0) input.region = args.region;
1996
1998
  const response = await ctx.hoststack.projects.create(teamId, input);
@@ -2295,7 +2297,7 @@ defineTool({
2295
2297
  const deploy = await ctx.hoststack.deploys.trigger(teamId, service.id);
2296
2298
  const deployId = deploy.deploy?.id ?? null;
2297
2299
  return respond({
2298
- summary: `Created AI dev environment "${name}" (${service.publicId})${volumeAttached ? " with a /workspace volume" : ""} \u2014 deploying. Open its Terminal tab once running.`,
2300
+ summary: `Created AI dev environment "${name}" (${service.publicId})${volumeAttached ? " with a /workspace volume" : ""} \u2014 deploying. Open it in the dashboard's Development section (or the service's Terminal tab) once running.`,
2299
2301
  data: { service: shapeService(service), volumeAttached, deployId }
2300
2302
  });
2301
2303
  }