Skip to content

Commit 0e5a232

Browse files
authored
Merge branch 'main' into auto_open
2 parents 2fb2f0f + bbe4924 commit 0e5a232

File tree

6 files changed

+28
-22
lines changed

6 files changed

+28
-22
lines changed

.github/workflows/main.yml

+2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ jobs:
5454
# - run: npm ci
5555
- run: npm install --no-package-lock
5656

57+
- run: npm run build
58+
5759
# TODO: Add --provenance once the repo is public
5860
- run: npm run publish-all
5961
env:

cli/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/inspector-cli",
3-
"version": "0.9.0",
3+
"version": "0.10.2",
44
"description": "CLI for the Model Context Protocol inspector",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",
@@ -21,6 +21,7 @@
2121
},
2222
"devDependencies": {},
2323
"dependencies": {
24+
"@modelcontextprotocol/sdk": "^1.10.0",
2425
"commander": "^13.1.0",
2526
"spawn-rx": "^5.1.2"
2627
}

client/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/inspector-client",
3-
"version": "0.9.0",
3+
"version": "0.10.2",
44
"description": "Client-side application for the Model Context Protocol inspector",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",
@@ -23,7 +23,7 @@
2323
"test:watch": "jest --config jest.config.cjs --watch"
2424
},
2525
"dependencies": {
26-
"@modelcontextprotocol/sdk": "^1.9.0",
26+
"@modelcontextprotocol/sdk": "^1.10.0",
2727
"@radix-ui/react-checkbox": "^1.1.4",
2828
"@radix-ui/react-dialog": "^1.1.3",
2929
"@radix-ui/react-icons": "^1.3.0",

package-lock.json

+15-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/inspector",
3-
"version": "0.9.0",
3+
"version": "0.10.2",
44
"description": "Model Context Protocol inspector",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",
@@ -38,10 +38,10 @@
3838
"publish-all": "npm publish --workspaces --access public && npm publish --access public"
3939
},
4040
"dependencies": {
41-
"@modelcontextprotocol/inspector-cli": "^0.9.0",
42-
"@modelcontextprotocol/inspector-client": "^0.9.0",
43-
"@modelcontextprotocol/inspector-server": "^0.9.0",
44-
"@modelcontextprotocol/sdk": "^1.9.0",
41+
"@modelcontextprotocol/inspector-cli": "^0.10.2",
42+
"@modelcontextprotocol/inspector-client": "^0.10.2",
43+
"@modelcontextprotocol/inspector-server": "^0.10.2",
44+
"@modelcontextprotocol/sdk": "^1.10.0",
4545
"concurrently": "^9.0.1",
4646
"open": "^10.1.0",
4747
"shell-quote": "^1.8.2",

server/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/inspector-server",
3-
"version": "0.9.0",
3+
"version": "0.10.2",
44
"description": "Server-side application for the Model Context Protocol inspector",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",
@@ -27,7 +27,7 @@
2727
"typescript": "^5.6.2"
2828
},
2929
"dependencies": {
30-
"@modelcontextprotocol/sdk": "^1.9.0",
30+
"@modelcontextprotocol/sdk": "^1.10.0",
3131
"cors": "^2.8.5",
3232
"express": "^5.1.0",
3333
"ws": "^8.18.0",

0 commit comments

Comments
 (0)