Delv
PLATFORMby Anthropic4.4

MCP Inspector

The official debugging tool for MCP. Hit your server's tools manually, browse resources, simulate sampling. Essential while building.

A+
Safety & Trust

Delv Safety Grade: A+

Score 94/100 · assessed 2026-04-19

Maintainer95
Permissions92
Supply chain95
Transparency90
Incidents100

MCP Inspector is Anthropic's official debugging tool for MCP server development. It's a local web interface that wraps your server process and provides manual testing of tools, resources, and prompts. The tool runs entirely on localhost, spawning your server as a child process and proxying requests through a web UI. Security posture is excellent: it's first-party Anthropic code, distributed via npm with proper versioning, and requires no credentials or network access beyond localhost. The attack surface is minimal since it's a development tool meant to run locally with servers you're already building. No known incidents. The main consideration is that it executes whatever server code you point it at, but that's the intended purpose. Transparency is good with open source and clear documentation in the repository, though dedicated docs beyond the README would strengthen it further.

Green flags

  • Official Anthropic first-party tool, actively maintained
  • Distributed via npm with proper semver and package integrity
  • Runs entirely locally, no external network calls required
  • Open source with clear MIT licence and active development
  • Minimal dependencies, straightforward codebase

Red flags

  • Executes arbitrary server code you provide (intended behaviour, not a flaw)
  • Web UI on localhost could be accessed by local malware
  • No dedicated documentation site beyond repository README

Permissions requested

Inbound networkShell executeRead files
Assessed by Delv Editorial using public metadata. Grades are advisory and update as the ecosystem changes. They do not replace your own review of permissions and code before granting an agent access to sensitive systems.

MCP capabilities

  • Tools
  • Resources
  • Prompts
  • Sampling

Platforms

macOSLinuxWindows

Config location

npx -y @modelcontextprotocol/inspector node your-server.js

Review

MCP Inspector is the debugging tool you'll open dozens of times a day while building MCP servers. It's a web UI that lets you manually invoke tools, browse resources, and test prompts without touching a full client like Claude Desktop. I keep it running in a browser tab whenever I'm iterating on server code. The workflow is dead simple: run your server through Inspector's npx wrapper, and it spins up a local web interface. You get a clean three-panel layout showing available tools, resources, and prompts. Click a tool, fill in the arguments through a generated form, hit invoke, see the response. No config files, no API keys, no fuss. It's faster than restarting Claude Desktop and navigating through chat to test a single function. The resource browser is particularly useful. I can see exactly what my server exposes, click through to fetch content, and verify URIs match what I expect. The prompt testing panel works the same way, though I find myself using it less since most servers focus on tools and resources. MCP support is complete for the features it claims: tools, resources, and prompts all work. Sampling is marked false, which makes sense since Inspector is for manual testing, not autonomous agent behaviour. The UI shows request/response JSON, so you can debug serialisation issues or unexpected parameter shapes. Rough edges: the interface is functional but basic. No request history, no saved test cases, no diff view between responses. If your tool returns large JSON blobs, you're scrolling through raw output. The npx wrapper occasionally trips over complex server startup commands, though you can work around it by pointing Inspector at a running server instead. I wouldn't use Inspector as my primary MCP client for actual work. It's a developer tool, not a chat interface. But for the 'does this tool actually work' question, it's faster and more transparent than any alternative. Every MCP server author will end up here eventually.
Verdict

Essential for anyone building MCP servers. Not a client for daily AI work, but the fastest way to verify your server behaves correctly. Keep it bookmarked.

Good at

  • Zero-config startup via npx wrapper
  • Manual tool invocation with generated forms beats writing JSON by hand
  • Shows raw request/response JSON for debugging serialisation
  • Works offline, no API keys required
  • Official Anthropic tool means it tracks MCP spec changes

Watch out

  • No request history or saved test cases
  • Basic UI, large responses are hard to navigate
  • Not suitable for actual AI workflows, purely a dev tool
  • No sampling support for testing autonomous behaviour
  • Complex server startup commands sometimes require workarounds