Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class SfDevopsListWorkItems extends McpTool<InputArgsShape, OutputArgsSha
**Input:**
- Either username (example devops-center@example.com) or alias (example myDevOpsOrg) is required.

**MANDATORY:** If the DevOps Center org is not given, use the 'sf-list-all-orgs' tool to list all orgs.
**MANDATORY:** If the DevOps Center org is not given, use the 'list_all_orgs' tool to list all orgs.
The list will indicate which org is DevOps Center, or Sandbox if possible. If these details are not provided in the list,
ask the user to specify which org is DevOps Center org. Only proceed after the user has selected the DevOps Center org.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ create a snapshot of my MyScratch in myDevHub`,
SourceOrg: sourceOrgId,
Description: input.description,
SnapshotName: input.name,
Content: 'metadatadata',
Content: 'metadata',
});

if (createResponse.success === false) {
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-provider-dx-core/src/tools/run_apex_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ RunSpecifiedTests="Run the Apex tests I specify, these will be specified in the
'Weather to wait for the test to finish (false) or enque the Apex tests and return the test run id (true)',
),
suiteName: z.string().describe('a suite of apex test classes to run').optional(),
testRunId: z.string().default('an id of an in-progress, or completed apex test run').optional(),
testRunId: z.string().describe('an id of an in-progress, or completed apex test run').optional(),
verbose: z
.boolean()
.default(false)
Expand Down