inspector

Testing and evaluation platform to chat, inspect, and debug MCP servers, MCP apps, and ChatGPT apps.

2,160
Stars
271
Forks
TypeScript
Language
8/23/2026
Added
View on GitHubDownload ZIP

⚠️ Third-Party Software Notice

This skill is third-party open-source software developed and hosted independently on GitHub. SkillTip is an informational directory and does not control or maintain the underlying repository. Any security checks displayed are automated and limited in scope. Review the source code before installing.

Read the Terms of Service

Installation

Add to your Claude Code skills directory:

# Add to your Claude Code skills
git clone https://github.com/MCPJam/inspector

Getting Started

Guides for using skills like inspector.

Security Report

Verified

Last scanned: —

{
  "status": "PASSED",
  "issues": []
}

README.md

MCPJam

MCPJam — the testing and evaluations platform for MCP server developers

Hosted app  ·  Docs  ·  Website

npm version License: Apache 2.0 Discord

MCPJam is the open-source testing & evaluations platform for MCP server developers who ship. Interactively test tools, prompts, resources, and authorization across 16 client configurations and 170+ models. Run evals on test cases, get insights on what's breaking, and gate regressions to secure every deployment.

🚀 Quick start

Open the hosted app. No install needed.

👉 app.mcpjam.com

... or run MCPJam locally for HTTP/S and local STDIO servers:

npx @mcpjam/inspector@latest

👋🏽 Why MCPJam

Clients like ChatGPT, Claude, and Cursor all read your server differently. MCPJam catches those differences, shows where your server breaks, and tells you how to fix it:

  • Inspect & debug: Explore your server's tools, resources, and prompts in one place. Test prompts from real LLMs, with full visibility & traces on every JSON-RPC message and OAuth exchange.
  • Cross-client evals: Score agent behavior across 16 client configurations — ChatGPT, Claude, Cursor, Copilot, and more — to understand how your MCP integrations perform across all users. Track accuracy, latency, and tool-call performance over time.
  • Security & reliability: Automate conformance & behavior checks in CI/CD to catch regressions before they reach production.

🔨 Features

CapabilityWhat it does
PlaygroundCross-client chat interface that emulates UIs, tool calls, and skills (with full traces). OpenAI Apps SDK and MCP app UIs, text tools, and a Chrome DevTools-style widget emulator. Read more
ChatMulti-server chat on frontier models for free, or bring your own API key. Compare up to 3 models side by side. Read more
OAuth DebuggerVisualize your OAuth & EMA requests step-by-step to find the source of errors. Guided MCP OAuth conformance checks across protocol versions 03-26, 06-18, 11-25, and 2026-07-28; DCR, client pre-registration, and CIMD. Read more
Server DebuggingManually run tools, resources, templates, prompts, and elicitation flows with full JSON-RPC logs.
SkillsExtend models with reusable behaviors in Chat and Playground. Local skills are read from your filesystem and never leave your machine; a project can also carry hosted skills, available on accounts where that is enabled. Read more
WorkspacesShared server groups with real-time team sync, so everyone tests the same config. Read more
EvalsTest cases with expected tool calls, run across LLMs, with accuracy metrics over time. Read more
CLIProbe servers, run doctor checks, exercise OAuth, and list tools/resources/prompts from your terminal. Read more
SDKProgrammatically drive inspections, snapshot capabilities, and assert on tool/resource shapes from your own tests. Read more
CI/CDRun conformance, E2E tests, evals, and OAuth checks on every PR in GitHub Actions or any pipeline. Read more

Playground

Debug your server against a model using tool calls or in-panel chat, with Chat, Trace, and Raw views. Supports the OpenAI Apps SDK and MCP app UIs, text tools, and a Chrome DevTools-style widget emulator so you can iterate on widgets locally.

  • Invoke a tool to render its widget instantly, or drive your server with an LLM.
  • Watch all JSON-RPC and window.openai messages in the logs.
  • Switch the emulator between Desktop, Tablet, and Mobile.
  • Test locale changes, CSP permissions, light/dark mode, hover & touch, and safe-area insets.
MCPJam Playground trace view: every tool call, agent step, and JSON-RPC message in one timeline

Trace view: every tool call, agent step, and JSON-RPC message in one timeline.

Chat

Multi-server chat on frontier models for free, or bring your own API key. Chat, Trace, and Raw views; compare up to 3 models side by side and watch each server's token usage.

MCPJam Chat comparing frontier models side by side

OAuth Debugger

Guided MCP OAuth conformance checks with step-by-step explanations. Test against every version of the OAuth spec (2025-03-26, 2025-06-18, 2025-11-25, and the 2026-07-28 draft), with support for client pre-registration, Dynamic Client Registration (DCR), and Client ID Metadata Documents (CIMD).

MCPJam OAuth flow debugger

Server Debugging

Everything you need to test an MCP server by hand: run tools, resources, resource templates, prompts, and elicitation flows with full JSON-RPC observability. Every feature of the original inspector, and more.

MCPJam MCP server debugging view

Skills

Use Skills in Chat and Playground to extend models with reusable behaviors. Local skills are read from your filesystem and never leave your machine; a project can also carry hosted skills, available on accounts where that is enabled. Read more

Workspaces

Group servers into shared workspaces with real-time team sync, so everyone on your team tests against the same configuration. Read more

Evals

Define test cases with expected tool calls and run them across multiple LLMs. Track accuracy over time to catch regressions early and improve your server with every iteration. Read more

CLI

Run MCPJam from the terminal for fast local dev loops and CI. Probe servers, run OAuth checks, inspect tools and resources, and execute evals without leaving your shell. Read more

SDK

Programmatic access to MCPJam for custom tooling, scripting, and integrations. Build your own workflows on top of MCPJam's inspection and evaluation primitives. Read more

CI/CD

Wire MCPJam into GitHub Actions, GitLab CI, or any CI system to run conformance, E2E tests, and evals on every PR — and catch MCP server regressions before they ship. Read more

🔌 Install

MCPJam Inspector runs three ways: a hosted web app, a desktop app for Mac and Windows, or via your terminal. The web app is HTTPS-only and has no install. Terminal and Desktop support HTTP/S and local STDIO servers.

Node.js TypeScript

Node.js 20+ is only required for the terminal install (npx). The hosted and desktop apps have no local runtime requirements.

Hosted web app: Open app.mcpjam.com. No install, always latest, and you can share server links with teammates like a Google Doc. HTTPS server URLs only; no STDIO, tunneling, skills, or tasks (those need the local inspector). Hosted docs

Desktop app: Download the installer. Supports HTTP/S and local STDIO, no Node.js required. Install Mac · Install Windows

Terminal: Supports HTTP/S and local STDIO. Open the printed localhost URL after it starts.

npx @mcpjam/inspector@latest

Docker: There is no published image, so build one from source first. Bound to localhost for security. Available at http://127.0.0.1:6274. Always use -p 127.0.0.1:6274:6274 (not -p 6274:6274) to keep the inspector local-only. On macOS/Windows, reach host MCP servers via http://host.docker.internal:PORT.

git clone https://github.com/MCPJam/inspector.git
cd inspector
docker build -t mcpjam/mcp-inspector:local -f mcpjam-inspector/Dockerfile .
docker run -p 127.0.0.1:6274:6274 mcpjam/mcp-inspector:local

👨‍💻 Contributing

We're grateful you're considering it. Read the contributing guide to get started, and come say hi in Discord.

🌍 Community & links

Website · Blog · Pricing · Docs · Discord · 𝕏 (Twitter) · LinkedIn

📄 License

Licensed under the Apache License 2.0. See LICENSE.

Frequently Asked Questions

What is inspector?

inspector is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by MCPJam. Testing and evaluation platform to chat, inspect, and debug MCP servers, MCP apps, and ChatGPT apps. It has 2,160 GitHub stars.

Is inspector safe to use?

inspector failed SkillsLLM's automated security scan, which flagged one or more high-severity issues. Review the Security Report section carefully before using it.

How do I install inspector?

Clone the repository with "git clone https://github.com/MCPJam/inspector" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is inspector written in?

inspector is primarily written in TypeScript. It is open-source under MCPJam on GitHub, so you can review or fork the full source.

Are there alternatives to inspector?

Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh inspector against similar tools.

Comments (0)

No comments yet. Be the first to share your thoughts!

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

Scrapling

by D4Vinci

🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!

75,9137,581Python
MCP Servers
View details

TrendRadar

by sansan0

⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。

61,65224,883Python
MCP Servers
View details

context7

by upstash

Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors

61,0602,938TypeScript
MCP Servers
View details

High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

39,9393,219C
MCP Servers
View details

Developers Also Liked

Based on votes and bookmarks from developers who liked this skill

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI Agentsai-agentsanthropicclaude-code
View details
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI Agentsai-agentsbrainstorming
View details

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP Serversapisai-tools
View details

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI Agentsai-agentsanthropicclaude-code
View details

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI Agentsclaude-codeai-tools
View details