You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The inspector runs both an MCP Inspector (MCPI) client UI (default port 6274) and an MCP Proxy (MCPP) server (default port 6277). Open the MCPI client UI in your browser to use the inspector. (These ports are derived from the T9 dialpad mapping of MCPI and MCPP respectively, as a mnemonic). You can customize the ports if needed:
@@ -40,20 +40,54 @@ For more details on ways to use the inspector, see the [Inspector section of the
40
40
41
41
### Authentication
42
42
43
-
The inspector supports bearer token authentication for SSE connections. Enter your token in the UI when connecting to an MCP server, and it will be sent in the Authorization header.
43
+
The inspector supports bearer token authentication for SSE connections. Enter your token in the UI when connecting to an MCP server, and it will be sent in the Authorization header. You can override the header name using the input field in the sidebar.
44
44
45
45
### Security Considerations
46
46
47
47
The MCP Inspector includes a proxy server that can run and communicate with local MCP processes. The proxy server should not be exposed to untrusted networks as it has permissions to spawn local processes and can connect to any specified MCP server.
48
48
49
49
### Configuration
50
50
51
-
The MCP Inspector supports the following configuration settings. To change them click on the `Configuration` button in the MCP Inspector UI:
51
+
The MCP Inspector supports the following configuration settings. To change them, click on the `Configuration` button in the MCP Inspector UI:
|`MCP_SERVER_REQUEST_TIMEOUT`| Timeout for requests to the MCP server (ms) | 10000 |
56
+
|`MCP_REQUEST_TIMEOUT_RESET_ON_PROGRESS`| Reset timeout on progress notifications | true |
57
+
|`MCP_REQUEST_MAX_TOTAL_TIMEOUT`| Maximum total timeout for requests sent to the MCP server (ms) (Use with progress notifications) | 60000 |
58
+
|`MCP_PROXY_FULL_ADDRESS`| Set this if you are running the MCP Inspector Proxy on a non-default address. Example: http://10.1.1.22:5577| "" |
59
+
60
+
These settings can be adjusted in real-time through the UI and will persist across sessions.
61
+
62
+
The inspector also supports configuration files to store settings for different MCP servers. This is useful when working with multiple servers or complex configurations:
CLI mode enables programmatic interaction with MCP servers from the command line, ideal for scripting, automation, and integration with coding assistants. This creates an efficient feedback loop for MCP server development.
|**Server Development**| Visual interface for interactive testing and debugging during development | Scriptable commands for quick testing and continuous integration; creates feedback loops with AI coding assistants like Cursor for rapid development |
160
+
|**Resource Exploration**| Interactive browser with hierarchical navigation and JSON visualization | Programmatic listing and reading for automation and scripting |
161
+
|**Tool Testing**| Form-based parameter input with real-time response visualization | Command-line tool execution with JSON output for scripting |
162
+
|**Prompt Engineering**| Interactive sampling with streaming responses and visual comparison | Batch processing of prompts with machine-readable output |
163
+
|**Debugging**| Request history, visualized errors, and real-time notifications | Direct JSON output for log analysis and integration with other tools |
164
+
|**Automation**| N/A | Ideal for CI/CD pipelines, batch processing, and integration with coding assistants |
165
+
|**Learning MCP**| Rich visual interface helps new users understand server capabilities | Simplified commands for focused learning of specific endpoints |
166
+
82
167
## License
83
168
84
169
This project is licensed under the MIT License—see the [LICENSE](LICENSE) file for details.
0 commit comments