@agent-inspect/mcp-server 5.1.0 → 5.3.0
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.cjs +9 -9
- package/dist/index.mjs +9 -9
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -1533,7 +1533,7 @@ function summarize(findings, diagnostics) {
|
|
|
1533
1533
|
errors: diagnostics.filter((item) => item.severity === "error").length
|
|
1534
1534
|
};
|
|
1535
1535
|
}
|
|
1536
|
-
function eventEvidence(event,
|
|
1536
|
+
function eventEvidence(event, path13) {
|
|
1537
1537
|
return {
|
|
1538
1538
|
runId: event.runId,
|
|
1539
1539
|
eventId: event.eventId,
|
|
@@ -3939,13 +3939,13 @@ function pairSteps(left, right) {
|
|
|
3939
3939
|
return pairs;
|
|
3940
3940
|
}
|
|
3941
3941
|
function compareLeafSteps(L, R, segments, opts, out) {
|
|
3942
|
-
const
|
|
3942
|
+
const path13 = buildPath(segments);
|
|
3943
3943
|
if (L.name !== R.name) {
|
|
3944
3944
|
out.push({
|
|
3945
3945
|
kind: "structure",
|
|
3946
3946
|
severity: "warning",
|
|
3947
3947
|
message: "Step name differs",
|
|
3948
|
-
path:
|
|
3948
|
+
path: path13,
|
|
3949
3949
|
left: L.name,
|
|
3950
3950
|
right: R.name
|
|
3951
3951
|
});
|
|
@@ -3955,7 +3955,7 @@ function compareLeafSteps(L, R, segments, opts, out) {
|
|
|
3955
3955
|
kind: "step-type",
|
|
3956
3956
|
severity: "warning",
|
|
3957
3957
|
message: "Step type differs",
|
|
3958
|
-
path:
|
|
3958
|
+
path: path13,
|
|
3959
3959
|
left: L.type,
|
|
3960
3960
|
right: R.type
|
|
3961
3961
|
});
|
|
@@ -3965,7 +3965,7 @@ function compareLeafSteps(L, R, segments, opts, out) {
|
|
|
3965
3965
|
kind: "step-status",
|
|
3966
3966
|
severity: "warning",
|
|
3967
3967
|
message: "Step status differs",
|
|
3968
|
-
path:
|
|
3968
|
+
path: path13,
|
|
3969
3969
|
left: L.status,
|
|
3970
3970
|
right: R.status
|
|
3971
3971
|
});
|
|
@@ -3977,7 +3977,7 @@ function compareLeafSteps(L, R, segments, opts, out) {
|
|
|
3977
3977
|
kind: "error",
|
|
3978
3978
|
severity: "error",
|
|
3979
3979
|
message: "Step error message differs",
|
|
3980
|
-
path:
|
|
3980
|
+
path: path13,
|
|
3981
3981
|
left: le || void 0,
|
|
3982
3982
|
right: re || void 0
|
|
3983
3983
|
});
|
|
@@ -3995,7 +3995,7 @@ function compareLeafSteps(L, R, segments, opts, out) {
|
|
|
3995
3995
|
kind: "duration",
|
|
3996
3996
|
severity: "info",
|
|
3997
3997
|
message: "Step duration differs",
|
|
3998
|
-
path:
|
|
3998
|
+
path: path13,
|
|
3999
3999
|
left: ld,
|
|
4000
4000
|
right: rd
|
|
4001
4001
|
});
|
|
@@ -4008,7 +4008,7 @@ function compareLeafSteps(L, R, segments, opts, out) {
|
|
|
4008
4008
|
kind: "metadata",
|
|
4009
4009
|
severity: "info",
|
|
4010
4010
|
message: "Step metadata differs",
|
|
4011
|
-
path:
|
|
4011
|
+
path: path13,
|
|
4012
4012
|
left: L.metadata,
|
|
4013
4013
|
right: R.metadata
|
|
4014
4014
|
});
|
|
@@ -4020,7 +4020,7 @@ function compareLeafSteps(L, R, segments, opts, out) {
|
|
|
4020
4020
|
kind: "output",
|
|
4021
4021
|
severity: "info",
|
|
4022
4022
|
message: "Output preview differs",
|
|
4023
|
-
path:
|
|
4023
|
+
path: path13,
|
|
4024
4024
|
left: L.outputPreview,
|
|
4025
4025
|
right: R.outputPreview
|
|
4026
4026
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -1525,7 +1525,7 @@ function summarize(findings, diagnostics) {
|
|
|
1525
1525
|
errors: diagnostics.filter((item) => item.severity === "error").length
|
|
1526
1526
|
};
|
|
1527
1527
|
}
|
|
1528
|
-
function eventEvidence(event,
|
|
1528
|
+
function eventEvidence(event, path13) {
|
|
1529
1529
|
return {
|
|
1530
1530
|
runId: event.runId,
|
|
1531
1531
|
eventId: event.eventId,
|
|
@@ -3931,13 +3931,13 @@ function pairSteps(left, right) {
|
|
|
3931
3931
|
return pairs;
|
|
3932
3932
|
}
|
|
3933
3933
|
function compareLeafSteps(L, R, segments, opts, out) {
|
|
3934
|
-
const
|
|
3934
|
+
const path13 = buildPath(segments);
|
|
3935
3935
|
if (L.name !== R.name) {
|
|
3936
3936
|
out.push({
|
|
3937
3937
|
kind: "structure",
|
|
3938
3938
|
severity: "warning",
|
|
3939
3939
|
message: "Step name differs",
|
|
3940
|
-
path:
|
|
3940
|
+
path: path13,
|
|
3941
3941
|
left: L.name,
|
|
3942
3942
|
right: R.name
|
|
3943
3943
|
});
|
|
@@ -3947,7 +3947,7 @@ function compareLeafSteps(L, R, segments, opts, out) {
|
|
|
3947
3947
|
kind: "step-type",
|
|
3948
3948
|
severity: "warning",
|
|
3949
3949
|
message: "Step type differs",
|
|
3950
|
-
path:
|
|
3950
|
+
path: path13,
|
|
3951
3951
|
left: L.type,
|
|
3952
3952
|
right: R.type
|
|
3953
3953
|
});
|
|
@@ -3957,7 +3957,7 @@ function compareLeafSteps(L, R, segments, opts, out) {
|
|
|
3957
3957
|
kind: "step-status",
|
|
3958
3958
|
severity: "warning",
|
|
3959
3959
|
message: "Step status differs",
|
|
3960
|
-
path:
|
|
3960
|
+
path: path13,
|
|
3961
3961
|
left: L.status,
|
|
3962
3962
|
right: R.status
|
|
3963
3963
|
});
|
|
@@ -3969,7 +3969,7 @@ function compareLeafSteps(L, R, segments, opts, out) {
|
|
|
3969
3969
|
kind: "error",
|
|
3970
3970
|
severity: "error",
|
|
3971
3971
|
message: "Step error message differs",
|
|
3972
|
-
path:
|
|
3972
|
+
path: path13,
|
|
3973
3973
|
left: le || void 0,
|
|
3974
3974
|
right: re || void 0
|
|
3975
3975
|
});
|
|
@@ -3987,7 +3987,7 @@ function compareLeafSteps(L, R, segments, opts, out) {
|
|
|
3987
3987
|
kind: "duration",
|
|
3988
3988
|
severity: "info",
|
|
3989
3989
|
message: "Step duration differs",
|
|
3990
|
-
path:
|
|
3990
|
+
path: path13,
|
|
3991
3991
|
left: ld,
|
|
3992
3992
|
right: rd
|
|
3993
3993
|
});
|
|
@@ -4000,7 +4000,7 @@ function compareLeafSteps(L, R, segments, opts, out) {
|
|
|
4000
4000
|
kind: "metadata",
|
|
4001
4001
|
severity: "info",
|
|
4002
4002
|
message: "Step metadata differs",
|
|
4003
|
-
path:
|
|
4003
|
+
path: path13,
|
|
4004
4004
|
left: L.metadata,
|
|
4005
4005
|
right: R.metadata
|
|
4006
4006
|
});
|
|
@@ -4012,7 +4012,7 @@ function compareLeafSteps(L, R, segments, opts, out) {
|
|
|
4012
4012
|
kind: "output",
|
|
4013
4013
|
severity: "info",
|
|
4014
4014
|
message: "Output preview differs",
|
|
4015
|
-
path:
|
|
4015
|
+
path: path13,
|
|
4016
4016
|
left: L.outputPreview,
|
|
4017
4017
|
right: R.outputPreview
|
|
4018
4018
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-inspect/mcp-server",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Read-only MCP server tools for local AgentInspect traces",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"dist"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"agent-inspect": "5.
|
|
37
|
+
"agent-inspect": "5.3.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {},
|
|
40
40
|
"publishConfig": {
|