25 lines
295 B
Markdown
25 lines
295 B
Markdown
# MCP Inspector
|
|
|
|
The MCP inspector is a developer tool for testing and debugging MCP servers.
|
|
|
|
Setup:
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
You can run it in dev mode via:
|
|
|
|
```bash
|
|
npm run dev
|
|
```
|
|
|
|
This will start both the client and server.
|
|
|
|
To run in production mode:
|
|
|
|
```bash
|
|
npm run build
|
|
npm start
|
|
```
|