From e4bfc058b2cd3e0fa794154e1c9f5ce64343aa59 Mon Sep 17 00:00:00 2001 From: ZK Date: Sun, 13 Apr 2025 00:06:04 +0800 Subject: [PATCH 1/3] fix README.md missing character --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0db92bf..31c7535 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ You can pass both arguments and environment variables to your MCP server. Argume ```bash # Pass arguments only -npx @modelcontextprotocol/inspector build/index.js arg1 arg2 +npx @modelcontextprotocol/inspector node build/index.js arg1 arg2 # Pass environment variables only npx @modelcontextprotocol/inspector -e KEY=value -e KEY2=$VALUE2 node build/index.js From e798504867cfe963dfdb15d538efe6c598e08924 Mon Sep 17 00:00:00 2001 From: kavinkumarbaskar <61575461+kavinkumar807@users.noreply.github.com> Date: Wed, 16 Apr 2025 12:02:35 +0530 Subject: [PATCH 2/3] fixed console warning - added key in select item to fix the console warning --- client/src/components/Sidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Sidebar.tsx b/client/src/components/Sidebar.tsx index c736558..1e86b82 100644 --- a/client/src/components/Sidebar.tsx +++ b/client/src/components/Sidebar.tsx @@ -522,7 +522,7 @@ const Sidebar = ({ {Object.values(LoggingLevelSchema.enum).map((level) => ( - {level} + {level} ))} From e4b4039e903808bb359b0b92ce514c2d5f5d8a12 Mon Sep 17 00:00:00 2001 From: kavinkumarbaskar <61575461+kavinkumar807@users.noreply.github.com> Date: Wed, 16 Apr 2025 12:06:54 +0530 Subject: [PATCH 3/3] prettier check --- client/src/components/Sidebar.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/src/components/Sidebar.tsx b/client/src/components/Sidebar.tsx index 1e86b82..d59e416 100644 --- a/client/src/components/Sidebar.tsx +++ b/client/src/components/Sidebar.tsx @@ -522,7 +522,9 @@ const Sidebar = ({ {Object.values(LoggingLevelSchema.enum).map((level) => ( - {level} + + {level} + ))}