Skip to main content
MCPJam Inspector is available as a hosted web app at app.mcpjam.com. Build, test, debug, and evaluate MCP servers and apps with frontier models — all from the web.

Open MCPJam Inspector

Launch the hosted inspector in your browser

Why use the hosted app?

  • No installation — Open a browser and start testing.
  • Always up to date — You’re always on the latest version without running npx @mcpjam/inspector@latest.
  • Shareable — Share server URLs with your team. Everyone can inspect the same server without local setup.

Share your MCP server

Send a link to your MCP server or app the same way you’d share a Google Doc. Anyone with a MCPJam account who opens it can immediately start chatting with the server right in their browser. Try it yourself with the Excalidraw MCP server:

Quick start

  1. Go to app.mcpjam.com
  2. Click Add server and enter your MCP server’s URL (must be HTTPS)
  3. Choose your authentication method (None, Bearer Token, or OAuth 2.0)
  4. Start inspecting tools, resources, and prompts

MCPJam MCP server

MCPJam provides a hosted MCP server at https://mcp.mcpjam.com/mcp (production) and https://mcp-staging.mcpjam.com/mcp (staging). Connect to it from any MCP client to access your MCPJam workspaces, organizations, and run diagnostics on your servers.

Authentication

The server uses OAuth 2.0 with WorkOS AuthKit. When you connect from an MCP client, it will automatically discover the authorization server and guide you through the OAuth flow using your MCPJam account.

Available tools

  • whoami — Returns your authenticated MCPJam user record
  • getWorkspaces — Lists your workspaces, optionally filtered by organization
  • getOrg — Returns details for a specific organization you belong to
  • doctor — Runs diagnostics on MCP servers in a workspace
Use getWorkspaces and getOrg to discover the IDs needed for doctor.

Example usage

# Connect from any MCP client
# The client will auto-discover OAuth and prompt you to sign in

# List all your workspaces
getWorkspaces {}

# List workspaces in a specific organization
getWorkspaces { "organizationId": "org_123" }

# Get organization details
getOrg { "organizationId": "org_123" }

# Run diagnostics on servers in a workspace
doctor {
  "organizationId": "org_123",
  "workspaceId": "ws_456"
}

What’s different

The following features are not available in the hosted app. They are available when running MCPJam locally via npx, Docker, or the desktop app.

HTTPS only

The hosted app requires all MCP server connections to use HTTPS. If your server only supports HTTP, use the local inspector instead.

No STDIO connections

STDIO servers are not available in the hosted version of MCPJam. Use a Streamable HTTP endpoint instead, or switch to the local inspector.

No tunneling

Tunneling exposes a local MCP server over HTTPS for remote access. Since the hosted app connects to already-remote servers, tunneling is not applicable.

No skills

Skills live on your filesystem and can only be discovered and run from the local inspector or desktop app.

No tasks

Tasks are not yet available in the hosted app.