Skip to main content
MCPJam Inspector covers the same protocol validation workflow as MCP Inspector and then extends into behavior debugging with a model in the loop. The overlap ends after you’ve verified that your server speaks MCP correctly. From there, MCPJam focuses on understanding how AI clients and models actually use your server. This page maps the MCP Inspector workflow to the MCPJam surface you reach for next.

Feature mapping

Connect your existing server

Most servers already configured in MCP Inspector can connect to MCPJam without modification. The main exception is deployment mode: the hosted web app requires remote HTTPS servers, while local STDIO servers use the desktop or terminal client. HTTP servers
  1. Click “Add server” in the MCP Servers tab.
  2. Select the Streamable HTTP transport and paste the same URL (for example https://your-server.example.com/mcp, or http://localhost:3000/mcp if you’re on the desktop client).
  3. If the server uses a Bearer token, choose Bearer Token under authentication and add the same token.
The hosted web app accepts HTTPS URLs only. Localhost and STDIO servers require the desktop or terminal client. Stdio servers
  1. Click “Add server” and select the STDIO transport.
  2. Use the same command and args from your MCP Inspector config file’s mcpServers entry.
  3. Add any environment variables with “Add Variable” in the Environment Variables section.
See Multi-server connections for details on each transport and authentication option.

When to keep using MCP Inspector

MCP Inspector remains a good fit as a lightweight protocol and deterministic response checker. If all you need is verifying that a server initializes and its tools respond according to the spec, it does the job.