SOLFIND
Web Lens
Portal home

GitHub - idosal/ui-inspector: Visual testing tool for MCP servers · GitHub

https://github.com/idosal/ui-inspector • 352 KB fetched
Open original page


GitHub - idosal/ui-inspector: Visual testing tool for MCP servers · GitHub Skip to content Navigation Menu Sign in Appearance settings * Platform * AI CODE CREATION * GitHub Copilot Write better code with AI * GitHub Copilot app Direct agents from issue to merge * MCP Registry Integrate external tools * DEVELOPER WORKFLOWS * Actions Automate any workflow * Codespaces Instant dev environments * Issues Plan and track work * Code Review Manage code changes * Code Quality Enforce quality at merge * APPLICATION SECURITY * GitHub Advanced Security Find and fix vulnerabilities * Code security Secure your code as you build * Secret protection Stop leaks before they start * EXPLORE * Why GitHub * Documentation * Blog * Changelog * Marketplace View all features * Solutions * BY COMPANY SIZE * Enterprises * Small and medium teams * Startups * Nonprofits * BY USE CASE * App Modernization * DevSecOps * DevOps * CI/CD * View all use cases * BY INDUSTRY * Healthcare * Financial services * Manufacturing * Government * View all industries View all solutions * Resources * EXPLORE BY TOPIC * AI * Software Development * DevOps * Security * View all topics * EXPLORE BY TYPE * Customer stories * Events & webinars * Ebooks & reports * Business insights * GitHub Skills * SUPPORT & SERVICES * Documentation * Customer support * Community forum * Trust center * Partners View all resources * Open Source * COMMUNITY * GitHub Sponsors Fund open source developers * PROGRAMS * Security Lab * Maintainer Community * GitHub Stars * Archive Program * REPOSITORIES * Topics * Trending * Collections * Enterprise * ENTERPRISE SOLUTIONS * Enterprise platform AI-powered developer platform * AVAILABLE ADD-ONS * GitHub Advanced Security Enterprise-grade security features * Copilot for Business Enterprise-grade AI features * Premium Support Enterprise-grade 24/7 support * Pricing Search / Sign in Sign up Appearance settings 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 idosal / ui-inspector Public forked from modelcontextprotocol/inspector * Notifications You must be signed in to change notification settings * Fork 12 * Star 94 * Code * Pull requests 0 * Actions * Projects * Security and quality 0 * Insights Additional navigation options * Code * Pull requests * Actions * Projects * Security and quality * Insights main Branches Tags Go to file Code Open more actions menu     Latest commit   History 926 Commits 926 Commits Folders and files Name Name Last commit message Last commit date .github/ workflows .github/ workflows     cli cli     client client     server server     .gitattributes .gitattributes     .gitignore .gitignore     .npmrc .npmrc     .prettierignore .prettierignore     .prettierrc .prettierrc     CLAUDE.md CLAUDE.md     CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md     CONTRIBUTING.md CONTRIBUTING.md     LICENSE LICENSE     README.md README.md     SECURITY.md SECURITY.md     mcp-inspector.png mcp-inspector.png     package-lock.json package-lock.json     package.json package.json     sample-config.json sample-config.json     View all files Repository files navigation * * README * Code of conduct * Contributing * License * Security More items MCP Inspector The MCP inspector is a developer tool for testing and debugging MCP servers. Running the Inspector Requirements * Node.js: ^22.7.5 From an MCP server repository To inspect an MCP server implementation, there's no need to clone this repo. Instead, use npx . For example, if your server is built at build/index.js : npx @modelcontextprotocol/inspector node build/index.js You can pass both arguments and environment variables to your MCP server. Arguments are passed directly to your server, while environment variables can be set using the -e flag: # Pass arguments only npx @modelcontextprotocol/inspector node build/index.js arg1 arg2 # Pass environment variables only npx @modelcontextprotocol/inspector -e key=value -e key2= $VALUE2 node build/index.js # Pass both environment variables and arguments npx @modelcontextprotocol/inspector -e key=value -e key2= $VALUE2 node build/index.js arg1 arg2 # Use -- to separate inspector flags from server arguments npx @modelcontextprotocol/inspector -e key= $VALUE -- node build/index.js -e server-flag 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: CLIENT_PORT=8080 SERVER_PORT=9000 npx @modelcontextprotocol/inspector node build/index.js For more details on ways to use the inspector, see the Inspector section of the MCP docs site . For help with debugging, see the Debugging guide . Servers File Export The MCP Inspector provides convenient buttons to export server launch configurations for use in clients such as Cursor, Claude Code, or the Inspector's CLI. The file is usually called mcp.json . * Server Entry - Copies a single server configuration entry to your clipboard. This can be added to your mcp.json file inside the mcpServers object with your preferred server name. STDIO transport example: { "command" : " node " , "args" : [ " build/index.js " , " --debug " ], "env" : { "API_KEY" : " your-api-key " , "DEBUG" : " true " } } SSE transport example: { "type" : " sse " , "url" : " http://localhost:3000/events " , "note" : " For SSE connections, add this URL directly in Client " } * Servers File - Copies a complete MCP configuration file structure to your clipboard, with your current server configuration added as default-server . This can be saved directly as mcp.json . STDIO transport example: { "mcpServers" : { "default-server" : { "command" : " node " , "args" : [ " build/index.js " , " --debug " ], "env" : { "API_KEY" : " your-api-key " , "DEBUG" : " true " } } } } SSE transport example: { "mcpServers" : { "default-server" : { "type" : " sse " , "url" : " http://localhost:3000/events " , "note" : " For SSE connections, add this URL directly in Client " } } } These buttons appear in the Inspector UI after you've configured your server settings, making it easy to save and reuse your configurations. For SSE transport connections, the Inspector provides similar functionality for both buttons. The "Server Entry" button copies the SSE URL configuration that can be added to your existing configuration file, while the "Servers File" button creates a complete configuration file containing the SSE URL for direct use in clients. You can paste the Server Entry into your existing mcp.json file under your chosen server name, or use the complete Servers File payload to create a new configuration file. Authentication 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. Security Considerations 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. Configuration The MCP Inspector supports the following configuration settings. To change them, click on the Configuration button in the MCP Inspector UI: Setting Description Default MCP_SERVER_REQUEST_TIMEOUT Timeout for requests to the MCP server (ms) 10000 MCP_REQUEST_TIMEOUT_RESET_ON_PROGRESS Reset timeout on progress notifications true MCP_REQUEST_MAX_TOTAL_TIMEOUT Maximum total timeout for requests sent to the MCP server (ms) (Use with progress notifications) 60000 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 "" MCP_AUTO_OPEN_ENABLED Enable automatic browser opening when inspector starts. Only as environment var, not configurable in browser. true These settings can be adjusted in real-time through the UI and will persist across sessions. The inspector also supports configuration files to store settings for different MCP servers. This is useful when working with multiple servers or complex configurations: npx @modelcontextprotocol/inspector --config path/to/config.json --server everything Example server configuration file: { "mcpServers" : { "everything" : { "command" : " npx " , "args" : [ " @modelcontextprotocol/server-everything " ], "env" : { "hello" : " Hello MCP! " } }, "my-server" : { "command" : " node " , "args" : [ " build/index.js " , " arg1 " , " arg2 " ], "env" : { "key" : " value " , "key2" : " value2 " } } } } Tip: You can easily generate this configuration format using the Server Entry and Servers File buttons in the Inspector UI, as described in the Servers File Export section above. You can also set the initial transport type, serverUrl , serverCommand , and serverArgs via query params, for example: http://localhost:6274/?transport=sse&serverUrl=http://localhost:8787/sse http://localhost:6274/?transport=streamable-http&serverUrl=http://localhost:8787/mcp http://localhost:6274/?transport=stdio&serverCommand=npx&serverArgs=arg1%20arg2 You can also set initial config settings via query params, for example: http://localhost:6274/?MCP_SERVER_REQUEST_TIMEOUT=10000&MCP_REQUEST_TIMEOUT_RESET_ON_PROGRESS=false&MCP_PROXY_FULL_ADDRESS=http://10.1.1.22:5577 Note that if both the query param and the corresponding localStorage item are set, the query param will take precedence. From this repository If you're working on the inspector itself: Development mode: npm run dev Note for Windows users: On Windows, use the following command instead: npm run dev:windows Production mode: npm run build npm start CLI Mode 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. npx @modelcontextprotocol/inspector --cli node build/index.js The CLI mode supports most operations across tools, resources, and prompts. A few examples: # Basic usage npx @modelcontextprotocol/inspector --cli node build/index.js # With config file npx @modelcontextprotocol/inspector --cli --config path/to/config.json --server myserver # List available tools npx @modelcontextprotocol/inspector --cli node build/index.js --method tools/list # Call a specific tool npx @modelcontextprotocol/inspector --cli node build/index.js --method tools/call --tool-name mytool --tool-arg key=value --tool-arg another=value2 # List available resources npx @modelcontextprotocol/inspector --cli node build/index.js --method resources/list # List available prompts npx @modelcontextprotocol/inspector --cli node build/index.js --method prompts/list # Connect to a remote MCP server npx @modelcontextprotocol/inspector --cli https://my-mcp-server.example.com # Call a tool on a remote server npx @modelcontextprotocol/inspector --cli https://my-mcp-server.example.com --method tools/call --tool-name remotetool --tool-arg param=value # List resources from a remote server npx @modelcontextprotocol/inspector --cli https://my-mcp-server.example.com --method resources/list UI Mode vs CLI Mode: When to Use Each Use Case UI Mode CLI Mode 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 Resource Exploration Interactive browser with hierarchical navigation and JSON visualization Programmatic listing and reading for automation and scripting Tool Testing Form-based parameter input with real-time response visualization Command-line tool execution with JSON output for scripting Prompt Engineering Interactive sampling with streaming responses and visual comparison Batch processing of prompts with machine-readable output Debugging Request history, visualized errors, and real-time notifications Direct JSON output for log analysis and integration with other tools Automation N/A Ideal for CI/CD pipelines, batch processing, and integration with coding assistants Learning MCP Rich visual interface helps new users understand server capabilities Simplified commands for focused learning of specific endpoints License This project is licensed under the MIT License—see the LICENSE file for details. About Visual testing tool for MCP servers modelcontextprotocol.io Resources Readme License Code of conduct Code of conduct Contributing Contributing Security policy Security policy Activity Stars 94 stars Watchers 3 watching Forks 12 forks Report repository Releases Packages Contributors Languages Footer (c) 2026 GitHub, Inc. Footer navigation * Terms * Privacy * Security * Status * Community * Docs * Contact * Manage cookies * Do not share my personal information You can’t perform that action at this time.

Links found on this page

  1. Skip to content [direct]
  2. Sign in [direct]
  3. GitHub Copilot Write better code with AI [direct]
  4. GitHub Copilot app Direct agents from issue to merge [direct]
  5. MCP Registry Integrate external tools [direct]
  6. Actions Automate any workflow [direct]
  7. Codespaces Instant dev environments [direct]
  8. Issues Plan and track work [direct]
  9. Code Review Manage code changes [direct]
  10. Code Quality Enforce quality at merge [direct]
  11. GitHub Advanced Security Find and fix vulnerabilities [direct]
  12. Code security Secure your code as you build [direct]
  13. Secret protection Stop leaks before they start [direct]
  14. Why GitHub [direct]
  15. Documentation [direct]
  16. Blog [direct]
  17. Changelog [direct]
  18. Marketplace [direct]
  19. View all features [direct]
  20. Enterprises [direct]
  21. Small and medium teams [direct]
  22. Startups [direct]
  23. Nonprofits [direct]
  24. App Modernization [direct]
  25. DevSecOps [direct]
  26. DevOps [direct]
  27. CI/CD [direct]
  28. View all use cases [direct]
  29. Healthcare [direct]
  30. Financial services [direct]
  31. Manufacturing [direct]
  32. Government [direct]
  33. View all industries [direct]
  34. View all solutions [direct]
  35. AI [direct]
  36. Software Development [direct]
  37. DevOps [direct]
  38. Security [direct]
  39. View all topics [direct]
  40. Customer stories [direct]
  41. Events & webinars [direct]
  42. Ebooks & reports [direct]
  43. Business insights [direct]
  44. GitHub Skills [direct]
  45. Customer support [direct]
  46. Community forum [direct]
  47. Trust center [direct]
  48. Partners [direct]
  49. View all resources [direct]
  50. GitHub Sponsors Fund open source developers [direct]
  51. Security Lab [direct]
  52. Maintainer Community [direct]
  53. GitHub Stars [direct]
  54. Archive Program [direct]
  55. Topics [direct]
  56. Trending [direct]
  57. Collections [direct]
  58. Copilot for Business Enterprise-grade AI features [direct]
  59. Premium Support Enterprise-grade 24/7 support [direct]
  60. Pricing [direct]
  61. Sign up [direct]
  62. idosal [direct]
  63. modelcontextprotocol/inspector [direct]
  64. Notifications [direct]
  65. Pull requests 0 [direct]
  66. Actions [direct]
  67. Projects [direct]
  68. Security and quality 0 [direct]
  69. Insights [direct]
  70. Branches [direct]
  71. Tags [direct]
  72. 926 Commits [direct]
  73. .github/ workflows [direct]
  74. cli [direct]
  75. client [direct]
  76. server [direct]
  77. .gitattributes [direct]
  78. .gitignore [direct]
  79. .npmrc [direct]
  80. .prettierignore [direct]