
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@mcp-use/inspector
Advanced tools
š MCP Inspector by mcp-use is an open-source, interactive developer tool for testing and debugging MCP servers with support for MCP-UI and OpenAI Apps SDK widgets. It provides a beautiful, intuitive interface for testing tools, exploring resources, managing prompts, and monitoring server connections - all from your browser.
npx @mcp-use/inspectorFor detailed usage instructions and guides, visit docs.mcp-use.com/inspector
| Package | Description | Version |
|---|---|---|
| mcp-use | Core MCP framework | |
| @mcp-use/cli | Build tool for MCP apps | |
| create-mcp-use-app | Create MCP apps |
| Feature | Description |
|---|---|
| š Auto-Mount | Automatically available at /inspector for all mcp-use servers |
| š Multi-Connection | Connect to and manage multiple MCP servers simultaneously |
| šÆ Interactive Testing | Test tools with live execution and real-time results |
| š Real-time Status | Monitor connection states, errors, and server health |
| š OAuth Support | Built-in OAuth flow handling with popup authentication |
| š¾ Persistent Sessions | Connections saved to localStorage and auto-reconnect |
| šØ Beautiful UI | Modern, responsive interface built with React and Tailwind |
| š Tool Explorer | Browse and execute all available tools with schema validation |
| š Resource Browser | View and copy resource URIs with syntax highlighting |
| š¬ Prompt Manager | Test and manage prompts with argument templates |
| š Universal Support | Works with HTTP/SSE and WebSocket connections |
| šØ Widget Support | Full support for MCP-UI and OpenAI Apps SDK widgets |
| š BYOK Chat | Bring Your Own Key chat interface for testing conversational flows |
| š¾ Saved Tool Calls | Save and replay tool executions for repeated testing |
| āØļø Quick Actions | Cmd + K keyboard shortcuts for rapid navigation |
| š³ Docker Ready | Self-host with a single Docker container for production use |
There are three ways to use the MCP Inspector:
Visit inspector.mcp-use.com - no installation required!
npx @mcp-use/inspector
Opens the inspector in your browser at http://localhost:8080
When you create an MCP server with mcp-use, the inspector is automatically available at /inspector:
import { MCPServer } from 'mcp-use/server'
const server = new MCPServer({
name: 'my-server',
version: '1.0.0',
})
// Add your tools, resources, prompts...
server.listen(3000)
// š Inspector automatically available at http://localhost:3000/inspector
The main dashboard is your central hub for managing MCP server connections:
To connect to an MCP server:
https://mcp.linear.app/mcp)Example URLs:
https://mcp.linear.app/mcphttp://localhost:3000/mcpFor servers requiring OAuth (like Linear):
Privacy Note: All authentication tokens and credentials are stored securely in your browser's local storage. Nothing is sent to our servers - everything stays on your device.
Once connected, each server shows:
Click "Inspect" to open the detailed server view.
After clicking "Inspect" on a connected server, you'll see four main tabs:
The Tools tab displays all available tools from the MCP server.
Features:
Example: When connected to Linear MCP server, you'll see 23+ tools for managing issues, projects, and teams.
Browse available resources from the MCP server:
Note: Some servers (like Linear) may not expose resources, in which case you'll see "No resources available".
Test and manage pre-configured prompts:
Note: Not all servers provide prompts. If none are available, you'll see "No prompts available".
The Chat tab provides an interactive interface to test the MCP server with an LLM using BYOK (Bring Your Own Key).
Privacy: Your API key is stored locally in your browser and never sent to our servers. All requests are made directly from your device to your LLM provider.
Setup:
Using Chat:
| Shortcut | Action |
|---|---|
Cmd/Ctrl + K | Quick search and navigation |
Esc | Close modals and overlays |
Quick Search (Cmd/Ctrl + K) allows you to:
The inspector automatically saves your configurations:
Your data never leaves your browser - everything is stored locally for privacy and security.
Deploy the MCP Inspector to your own infrastructure with a single Docker container. Perfect for enterprise environments, air-gapped networks, or when you need full control over your debugging environment.
The official Docker image is available on Docker Hub.
Quick Start:
docker run -d -p 8080:8080 --name mcp-inspector mcpuse/inspector:latest
Then visit http://localhost:8080 to access your self-hosted inspector.
Using Docker Run:
docker run -d \
--name mcp-inspector \
-p 8080:8080 \
-e NODE_ENV=production \
mcpuse/inspector:latest
Using Docker Compose:
version: '3.8'
services:
mcp-inspector:
image: mcpuse/inspector:latest
ports:
- "8080:8080"
environment:
- NODE_ENV=production
- PORT=8080
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080"]
interval: 30s
timeout: 10s
retries: 3
All configuration is optional. The inspector works out of the box with sensible defaults.
| Variable | Default | Description |
|---|---|---|
NODE_ENV | production | Node.js environment |
PORT | 8080 | Port to run the inspector on |
HOST | 0.0.0.0 | Host to bind to |
Deploy instantly to Railway with automatic HTTPS and custom domains:
For more deployment options and support, visit the self-hosting documentation.
The MCP Inspector collects anonymized usage data to help us improve the tool.
We collect:
We DO NOT collect:
You can disable telemetry in several ways:
Option 1: Environment Variable
# Set before starting the inspector
export MCP_USE_ANONYMIZED_TELEMETRY=false
Option 2: localStorage (Browser)
// In browser console
localStorage.setItem('mcp_inspector_telemetry_disabled', 'true')
Option 3: Package-level
// Add to your package.json
{
"scarfSettings": {
"enabled": false
}
}
We use:
We welcome contributions!
See our contributing guide for details.
MIT Ā© mcp-use
FAQs
MCP Inspector - A tool for inspecting and debugging MCP servers
The npm package @mcp-use/inspector receives a total of 2,494 weekly downloads. As such, @mcp-use/inspector popularity was classified as popular.
We found that @mcp-use/inspector demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Ā It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.