Skip to content

Commit 33aad8a

Browse files
authored
Merge branch 'main' into max/default-tool-json
2 parents 2e8cc56 + 8f7680d commit 33aad8a

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

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.8.2",
3+
"version": "0.9.0",
44
"description": "Client-side application for the Model Context Protocol inspector",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",

client/src/components/ListPane.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const ListPane = <T extends object>({
2222
isButtonDisabled,
2323
}: ListPaneProps<T>) => (
2424
<div className="bg-card rounded-lg shadow">
25-
<div className="p-4 border-b border-gray-200 dark:border-gray-700">
25+
<div className="p-4 border-b border-gray-200 dark:border-gray-800">
2626
<h3 className="font-semibold dark:text-white">{title}</h3>
2727
</div>
2828
<div className="p-4">

client/src/components/PromptsTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ const PromptsTab = ({
108108
/>
109109

110110
<div className="bg-card rounded-lg shadow">
111-
<div className="p-4 border-b border-gray-200">
111+
<div className="p-4 border-b border-gray-200 dark:border-gray-800">
112112
<h3 className="font-semibold">
113113
{selectedPrompt ? selectedPrompt.name : "Select a prompt"}
114114
</h3>

client/src/components/ResourcesTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ const ResourcesTab = ({
162162
/>
163163

164164
<div className="bg-card rounded-lg shadow">
165-
<div className="p-4 border-b border-gray-200 flex justify-between items-center">
165+
<div className="p-4 border-b border-gray-200 dark:border-gray-800 flex justify-between items-center">
166166
<h3
167167
className="font-semibold truncate"
168168
title={selectedResource?.name || selectedTemplate?.name}

client/src/components/Sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ const Sidebar = ({
9292

9393
return (
9494
<div className="w-80 bg-card border-r border-border flex flex-col h-full">
95-
<div className="flex items-center justify-between p-4 border-b border-gray-200">
95+
<div className="flex items-center justify-between p-4 border-b border-gray-200 dark:border-gray-800">
9696
<div className="flex items-center">
9797
<h1 className="ml-2 text-lg font-semibold">
9898
MCP Inspector v{version}

client/src/components/ToolsTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ const ToolsTab = ({
146146
/>
147147

148148
<div className="bg-card rounded-lg shadow">
149-
<div className="p-4 border-b border-gray-200">
149+
<div className="p-4 border-b border-gray-200 dark:border-gray-800">
150150
<h3 className="font-semibold">
151151
{selectedTool ? selectedTool.name : "Select a tool"}
152152
</h3>

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/inspector",
3-
"version": "0.8.2",
3+
"version": "0.9.0",
44
"description": "Model Context Protocol inspector",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",
@@ -36,8 +36,8 @@
3636
"publish-all": "npm publish --workspaces --access public && npm publish --access public"
3737
},
3838
"dependencies": {
39-
"@modelcontextprotocol/inspector-client": "^0.8.2",
40-
"@modelcontextprotocol/inspector-server": "^0.8.2",
39+
"@modelcontextprotocol/inspector-client": "^0.9.0",
40+
"@modelcontextprotocol/inspector-server": "^0.9.0",
4141
"concurrently": "^9.0.1",
4242
"shell-quote": "^1.8.2",
4343
"spawn-rx": "^5.1.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.8.2",
3+
"version": "0.9.0",
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)