
The mcp-use server framework includes a built-in Inspector UI, a web-based interface for real-time monitoring, debugging, and interaction with your MCP server. It provides a quick way to see server status, available tools, resources, and logs.
What is the Inspector UI?
The Inspector UI is a built-in web interface that provides real-time monitoring and debugging capabilities for your MCP server. It’s a visual dashboard that shows server status, available tools, resources, and logs. It also includes a BYOK (Bring Your Own Key) chat interface for interactive communication with your MCP server.Why Use the Inspector UI?
The Inspector UI makes it easier to:- Debug issues by seeing real-time logs and server status
- Test tools interactively without writing client code
- Monitor performance with live metrics and request tracking
- Explore capabilities by browsing available tools and resources
- Chat with your server using the built-in BYOK chat interface
Accessing the Inspector
Once your mcp-use server is running in debug mode, you can access the Inspector UI in your browser. By default, the Inspector lives at/inspector.
For a server running on http://localhost:3001, the default Inspector URL is:
http://localhost:3001/inspector
inspector_path semantics
inspector_path is a base prefix, not a replacement for /inspector.
inspector_path="/"or omitting it keeps the default route at/inspectorinspector_path="/mcp"mounts the Inspector at/mcp/inspectorinspector_path="/internal/debug"mounts the Inspector at/internal/debug/inspectorinspector_path="/mcp/inspector"is still accepted for backward compatibility and normalizes to the same final route
mcp_path:
mcp_path="/mcp"and defaultinspector_pathgives you/mcpfor MCP traffic and/inspectorfor the Inspectormcp_path="/mcp"andinspector_path="/mcp"gives you/mcpfor MCP traffic and/mcp/inspectorfor the Inspector
Demo
Configuration
The Inspector UI is automatically enabled when running in debug mode and disabled in production.Next Steps
- Running the Server - How to run your server
- Quickstart Guide - Build your first server