Skip to content

Commit ef32a8f

Browse files
authored
Merge pull request modelcontextprotocol#116 from modelcontextprotocol/claude/update-readme
feat: add help and debug links to sidebar
2 parents 7edde50 + 54e9957 commit ef32a8f

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The inspector runs both a client UI (default port 5173) and an MCP proxy server
2626
CLIENT_PORT=8080 SERVER_PORT=9000 npx @modelcontextprotocol/inspector build/index.js
2727
```
2828

29-
For more details on ways to use the inspector, see the [Inspector section of the MCP docs site](https://modelcontextprotocol.io/docs/tools/inspector).
29+
For more details on ways to use the inspector, see the [Inspector section of the MCP docs site](https://modelcontextprotocol.io/docs/tools/inspector). For help with debugging, see the [Debugging guide](https://modelcontextprotocol.io/docs/tools/debugging).
3030

3131
### From this repository
3232

client/src/components/Sidebar.tsx

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useState } from "react";
2-
import { Play, ChevronDown, ChevronRight } from "lucide-react";
2+
import { Play, ChevronDown, ChevronRight, CircleHelp, Bug } from "lucide-react";
33
import { Button } from "@/components/ui/button";
44
import { Input } from "@/components/ui/input";
55
import {
@@ -220,7 +220,7 @@ const Sidebar = ({
220220
</div>
221221
</div>
222222
<div className="p-4 border-t">
223-
<div className="flex items-center space-x-2">
223+
<div className="flex items-center justify-between">
224224
<Select
225225
value={theme}
226226
onValueChange={(value: string) =>
@@ -236,6 +236,19 @@ const Sidebar = ({
236236
<SelectItem value="dark">Dark</SelectItem>
237237
</SelectContent>
238238
</Select>
239+
240+
<div className="flex items-center space-x-2">
241+
<a href="https://modelcontextprotocol.io/docs/tools/inspector" target="_blank" rel="noopener noreferrer">
242+
<Button variant="ghost" title="Inspector Documentation">
243+
<CircleHelp className="w-4 h-4 text-gray-800" />
244+
</Button>
245+
</a>
246+
<a href="https://modelcontextprotocol.io/docs/tools/debugging" target="_blank" rel="noopener noreferrer">
247+
<Button variant="ghost" title="Debugging Guide">
248+
<Bug className="w-4 h-4 text-gray-800" />
249+
</Button>
250+
</a>
251+
</div>
239252
</div>
240253
</div>
241254
</div>

0 commit comments

Comments
 (0)