Skip to content

Explicit instructions for expected result format #391

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 13, 2025
Merged
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
7 changes: 6 additions & 1 deletion src/tools/testplans.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,12 @@ function configureTestPlanTools(server: McpServer, tokenProvider: () => Promise<
{
project: z.string().describe("The unique identifier (ID or name) of the Azure DevOps project."),
title: z.string().describe("The title of the test case."),
steps: z.string().optional().describe("The steps to reproduce the test case. Make sure to format each step as '1. Step one|Expected result one\n2. Step two|Expected result two"),
steps: z
.string()
.optional()
.describe(
"The steps to reproduce the test case. Make sure to format each step as '1. Step one|Expected result one\n2. Step two|Expected result two. USE '|' as the delimiter between step and expected result. DO NOT use '|' in the description of the step or expected result."
),
priority: z.number().optional().describe("The priority of the test case."),
areaPath: z.string().optional().describe("The area path for the test case."),
iterationPath: z.string().optional().describe("The iteration path for the test case."),
Expand Down
Loading
Loading