File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ You can pass both arguments and environment variables to your MCP server. Argume
1818
1919``` bash
2020# Pass arguments only
21- npx @modelcontextprotocol/inspector build/index.js arg1 arg2
21+ npx @modelcontextprotocol/inspector node build/index.js arg1 arg2
2222
2323# Pass environment variables only
2424npx @modelcontextprotocol/inspector -e key=value -e key2=$VALUE2 node build/index.js
Original file line number Diff line number Diff line change @@ -522,7 +522,9 @@ const Sidebar = ({
522522 </ SelectTrigger >
523523 < SelectContent >
524524 { Object . values ( LoggingLevelSchema . enum ) . map ( ( level ) => (
525- < SelectItem value = { level } > { level } </ SelectItem >
525+ < SelectItem key = { level } value = { level } >
526+ { level }
527+ </ SelectItem >
526528 ) ) }
527529 </ SelectContent >
528530 </ Select >
You can’t perform that action at this time.
0 commit comments