Skip to content

Commit 156e1dc

Browse files
authored
Merge branch 'main' into fix/resolve-ref-pre-validation
2 parents 6106b1b + f93afb0 commit 156e1dc

File tree

7 files changed

+19
-18
lines changed

7 files changed

+19
-18
lines changed

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/inspector-cli",
3-
"version": "0.17.3",
3+
"version": "0.17.4",
44
"description": "CLI for the Model Context Protocol inspector",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/inspector-client",
3-
"version": "0.17.3",
3+
"version": "0.17.4",
44
"description": "Client-side application for the Model Context Protocol inspector",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",

client/src/components/ToolResults.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,8 @@ const ToolResults = ({
205205
/>
206206
)}
207207
{item.type === "resource" &&
208-
(item.resource?.mimeType?.startsWith("audio/") ? (
208+
(item.resource?.mimeType?.startsWith("audio/") &&
209+
"blob" in item.resource ? (
209210
<audio
210211
controls
211212
src={`data:${item.resource.mimeType};base64,${item.resource.blob}`}

client/src/components/__tests__/HistoryAndNotifications.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ describe("HistoryAndNotifications", () => {
2828
method: "notifications/message",
2929
params: {
3030
level: "info" as const,
31-
message: "First notification",
31+
data: "First notification",
3232
},
3333
},
3434
{
3535
method: "notifications/progress",
3636
params: {
3737
progressToken: "test-token",
3838
progress: 50,
39-
message: "Second notification",
39+
total: 100,
4040
},
4141
},
4242
];

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/inspector",
3-
"version": "0.17.3",
3+
"version": "0.17.4",
44
"description": "Model Context Protocol inspector",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",
@@ -47,9 +47,9 @@
4747
"check-version": "node scripts/check-version-consistency.js"
4848
},
4949
"dependencies": {
50-
"@modelcontextprotocol/inspector-cli": "^0.17.3",
51-
"@modelcontextprotocol/inspector-client": "^0.17.3",
52-
"@modelcontextprotocol/inspector-server": "^0.17.3",
50+
"@modelcontextprotocol/inspector-cli": "^0.17.4",
51+
"@modelcontextprotocol/inspector-client": "^0.17.4",
52+
"@modelcontextprotocol/inspector-server": "^0.17.4",
5353
"@modelcontextprotocol/sdk": "^1.20.1",
5454
"concurrently": "^9.2.0",
5555
"node-fetch": "^3.3.2",

server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/inspector-server",
3-
"version": "0.17.3",
3+
"version": "0.17.4",
44
"description": "Server-side application for the Model Context Protocol inspector",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",

0 commit comments

Comments
 (0)