Skip to content

Commit f529d8a

Browse files
committed
Moved images to docs/images, removed screenshots from tui/web projects, updated all image references (relative for now)
1 parent feb6ae6 commit f529d8a

9 files changed

Lines changed: 6 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The MCP inspector is a developer tool for testing and debugging [Model Context P
66

77
The MCP Inspector provides multiple client interfaces built around a shared core protocol layer. For a deep dive into the underlying architecture, see our [Shared Code Architecture documentation](./docs/shared-code-architecture.md).
88

9-
![Shared Code Architecture](./docs/shared-code-architecture.svg)
9+
![Shared Code Architecture](./docs/images/shared-code-architecture.svg)
1010

1111
The repository consists of the following main packages:
1212

clients/tui/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The Terminal User Interface (TUI) client brings the interactive exploration capabilities of the Web Client directly to your terminal. It is built using [Ink](https://github.com/vadimdemedes/ink) to provide a rich, React-like component experience in a command-line environment.
44

5-
![MCP Inspector TUI Screenshot](./tui-screenshot.png)
5+
![MCP Inspector TUI Screenshot](../../docs/images/tui-screenshot.png)
66

77
## Running the TUI
88

clients/tui/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
},
1717
"files": [
1818
"build",
19-
"README.md",
20-
"tui-screenshot.png"
19+
"README.md"
2120
],
2221
"scripts": {
2322
"build": "tsc",

clients/web/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The Web Client is a React-based application that provides a rich, interactive browser UI for exploring, testing, and debugging MCP servers. It is the primary interface for most users.
44

5-
![MCP Inspector Screenshot](./web-screenshot.png)
5+
![MCP Inspector Screenshot](../../docs/images/web-screenshot.png)
66

77
## Running the Web Inspector
88

clients/web/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
"files": [
1515
"build",
1616
"dist",
17-
"README.md",
18-
"web-screenshot.png"
17+
"README.md"
1918
],
2019
"scripts": {
2120
"dev": "vite --port 6274",

docs/shared-code-architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The architecture addresses these issues by providing a single source of truth fo
3030

3131
### Architecture Diagram
3232

33-
![Shared Code Architecture](shared-code-architecture.svg)
33+
![Shared Code Architecture](images/shared-code-architecture.svg)
3434

3535
**Key concept**: Each environment (CLI, TUI, web client) injects environment-specific dependencies into `InspectorClient`. All three use the same `InspectorClient` and optional state managers from core:
3636

0 commit comments

Comments
 (0)