You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mcp-server/CHANGELOG.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,17 @@
1
1
# Changelog
2
2
3
+
## Unreleased (2026-04-20)
4
+
5
+
### Added
6
+
7
+
* MCP tool `currents-get-context` for `GET /context` (test failure context for AI debugging).
8
+
9
+
### Fixed
10
+
11
+
*`currents-list-affected-tests`: serialize `action_type` query params as `action_type[]` to match OpenAPI.
12
+
*`currents-update-webhook`: require at least one updatable field so the HTTP request body is never empty (matches OpenAPI `requestBody.required: true`).
13
+
*`postApi`: treat HTTP 201 and empty JSON bodies like other successful POST responses.
"List tests affected by actions (quarantine, skip, tag) for a project within a date range. Returns aggregated data grouped by test signature. Supports filtering by action types, action ID, status, and search. Requires projectId, date_start, and date_end. (Preview endpoint: fields and path may change.)",
107
+
"List tests affected by actions (quarantine, skip, tag) for a project within a date range. Returns aggregated data grouped by test signature. Supports filtering by action types, action ID, status, and search. Requires projectId, date_start, and date_end.",
107
108
listAffectedTestsTool.schema,
108
109
listAffectedTestsTool.handler
109
110
);
@@ -239,6 +240,13 @@ server.tool(
239
240
getErrorsExplorerTool.handler
240
241
);
241
242
243
+
server.tool(
244
+
"currents-get-context",
245
+
"Retrieve structured test failure context for AI debugging (GET /context). Supports run-level (run_id only), instance-level (run_id + instance_id), or test-level (instance_id + test_id). Optional format json|md, detail default|compact|summary, and pagination limit/page for run/instance levels.",
0 commit comments