@remixhq/mcp 0.1.5 → 0.1.6
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/cli.js +3 -3
- package/dist/cli.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/server.js +3 -3
- package/dist/server.js.map +1 -1
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -1261,7 +1261,7 @@ function registerCollabTools(server, context) {
|
|
|
1261
1261
|
});
|
|
1262
1262
|
registerTool(server, context, {
|
|
1263
1263
|
name: "remix_collab_request_merge",
|
|
1264
|
-
description: "Open a Remix merge request from the current bound repository to its upstream app instead of merging locally with raw git.",
|
|
1264
|
+
description: "Open a prompt-backed Remix merge request from the current bound repository to its upstream app instead of merging locally with raw git.",
|
|
1265
1265
|
access: "remote_write",
|
|
1266
1266
|
inputSchema: requestMergeInputSchema,
|
|
1267
1267
|
outputSchema: requestMergeSuccessSchema,
|
|
@@ -1313,7 +1313,7 @@ function registerCollabTools(server, context) {
|
|
|
1313
1313
|
});
|
|
1314
1314
|
registerTool(server, context, {
|
|
1315
1315
|
name: "remix_collab_view_merge_request",
|
|
1316
|
-
description: "View Remix merge request metadata,
|
|
1316
|
+
description: "View Remix merge request metadata, review groups, change steps, and optionally a bounded unified diff before approval or rejection.",
|
|
1317
1317
|
access: "read",
|
|
1318
1318
|
inputSchema: viewMergeRequestInputSchema,
|
|
1319
1319
|
outputSchema: viewMergeRequestSuccessSchema,
|
|
@@ -1328,7 +1328,7 @@ function registerCollabTools(server, context) {
|
|
|
1328
1328
|
});
|
|
1329
1329
|
registerTool(server, context, {
|
|
1330
1330
|
name: "remix_collab_approve_remote",
|
|
1331
|
-
description: "Approve a merge request remotely and wait for terminal completion without mutating the local repository, preserving Remix as the merge authority.",
|
|
1331
|
+
description: "Approve a merge request or upstream sync remotely and wait for terminal completion without mutating the local repository, preserving Remix as the merge authority.",
|
|
1332
1332
|
access: "remote_write",
|
|
1333
1333
|
inputSchema: approveInputSchema,
|
|
1334
1334
|
outputSchema: approveSuccessSchema,
|