From 8d20044b33dfb53ebad7f642fe68f3726f5028c6 Mon Sep 17 00:00:00 2001 From: Nathan Arseneau Date: Sat, 5 Apr 2025 11:47:44 -0400 Subject: [PATCH 1/2] fix darkmode color and padding for the tab item --- client/src/components/PromptsTab.tsx | 2 +- client/src/components/ResourcesTab.tsx | 2 +- client/src/components/ToolsTab.tsx | 2 +- client/src/components/ui/tabs.tsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/components/PromptsTab.tsx b/client/src/components/PromptsTab.tsx index 48c847d..6470673 100644 --- a/client/src/components/PromptsTab.tsx +++ b/client/src/components/PromptsTab.tsx @@ -105,7 +105,7 @@ const PromptsTab = ({ />
-
+

{selectedPrompt ? selectedPrompt.name : "Select a prompt"}

diff --git a/client/src/components/ResourcesTab.tsx b/client/src/components/ResourcesTab.tsx index 2a10824..f27c91c 100644 --- a/client/src/components/ResourcesTab.tsx +++ b/client/src/components/ResourcesTab.tsx @@ -161,7 +161,7 @@ const ResourcesTab = ({ />
-
+

-
+

{selectedTool ? selectedTool.name : "Select a tool"}

diff --git a/client/src/components/ui/tabs.tsx b/client/src/components/ui/tabs.tsx index d1b685f..55b941a 100644 --- a/client/src/components/ui/tabs.tsx +++ b/client/src/components/ui/tabs.tsx @@ -42,7 +42,7 @@ const TabsContent = React.forwardRef< Date: Mon, 14 Apr 2025 08:23:08 -0700 Subject: [PATCH 2/2] Bump version to 0.9.0 --- client/package.json | 2 +- package-lock.json | 12 ++++++------ package.json | 6 +++--- server/package.json | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/client/package.json b/client/package.json index 0734ea9..3b50ab1 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "@modelcontextprotocol/inspector-client", - "version": "0.8.2", + "version": "0.9.0", "description": "Client-side application for the Model Context Protocol inspector", "license": "MIT", "author": "Anthropic, PBC (https://anthropic.com)", diff --git a/package-lock.json b/package-lock.json index dcc03d4..89e5240 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,20 +1,20 @@ { "name": "@modelcontextprotocol/inspector", - "version": "0.8.2", + "version": "0.9.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@modelcontextprotocol/inspector", - "version": "0.8.2", + "version": "0.9.0", "license": "MIT", "workspaces": [ "client", "server" ], "dependencies": { - "@modelcontextprotocol/inspector-client": "^0.8.2", - "@modelcontextprotocol/inspector-server": "^0.8.2", + "@modelcontextprotocol/inspector-client": "^0.9.0", + "@modelcontextprotocol/inspector-server": "^0.9.0", "concurrently": "^9.0.1", "shell-quote": "^1.8.2", "spawn-rx": "^5.1.2", @@ -32,7 +32,7 @@ }, "client": { "name": "@modelcontextprotocol/inspector-client", - "version": "0.8.2", + "version": "0.9.0", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.9.0", @@ -9500,7 +9500,7 @@ }, "server": { "name": "@modelcontextprotocol/inspector-server", - "version": "0.8.2", + "version": "0.9.0", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.9.0", diff --git a/package.json b/package.json index f9d2217..a3e10c1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@modelcontextprotocol/inspector", - "version": "0.8.2", + "version": "0.9.0", "description": "Model Context Protocol inspector", "license": "MIT", "author": "Anthropic, PBC (https://anthropic.com)", @@ -36,8 +36,8 @@ "publish-all": "npm publish --workspaces --access public && npm publish --access public" }, "dependencies": { - "@modelcontextprotocol/inspector-client": "^0.8.2", - "@modelcontextprotocol/inspector-server": "^0.8.2", + "@modelcontextprotocol/inspector-client": "^0.9.0", + "@modelcontextprotocol/inspector-server": "^0.9.0", "concurrently": "^9.0.1", "shell-quote": "^1.8.2", "spawn-rx": "^5.1.2", diff --git a/server/package.json b/server/package.json index 248db61..4927ce0 100644 --- a/server/package.json +++ b/server/package.json @@ -1,6 +1,6 @@ { "name": "@modelcontextprotocol/inspector-server", - "version": "0.8.2", + "version": "0.9.0", "description": "Server-side application for the Model Context Protocol inspector", "license": "MIT", "author": "Anthropic, PBC (https://anthropic.com)",