MCP Inspector
The official debugging tool for MCP. Hit your server's tools manually, browse resources, simulate sampling. Essential while building.
Delv Safety Grade: A+
Score 94/100 · assessed 2026-04-19
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
MCP capabilities
- Tools
- Resources
- Prompts
- Sampling
Platforms
Config location
npx -y @modelcontextprotocol/inspector node your-server.js
Review
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