This directory contains helper scripts for running the MCP Inspector with various configurations.
- Used by:
npm run inspector - Purpose: Auto-opens browser after starting inspector
- Features:
- Starts inspector with
DANGEROUSLY_OMIT_AUTH=true - Automatically opens browser to
http://localhost:6274after 3 seconds - No manual token entry required
- Loads environment variables from
.env.local
- Starts inspector with
- Purpose: Attempts to capture session token and open pre-filled URL
- Features:
- Parses inspector output for session token
- Opens browser with token pre-filled in URL
- More complex but handles token-based authentication
- Purpose: Shell script version of auto-opening functionality
- Features:
- Similar to
inspector-auto.jsbut in bash - May have platform compatibility issues
- Similar to
# Auto-opening mode (recommended)
npm run inspector
# Manual mode (no auto-open)
npm run inspector:manual
# Authenticated mode (requires token)
npm run inspector:authAll scripts load environment variables from .env.local:
PLUGGEDIN_API_KEY: Your API key for the pluggedin-appPLUGGEDIN_API_BASE_URL: Base URL for the pluggedin-app (e.g.,http://localhost:12005)
- macOS: Uses
opencommand - Linux: Uses
xdg-opencommand - Windows: Uses
startcommand
If auto-opening doesn't work:
- Check that your platform's browser opener is available
- Manually open
http://localhost:6274in your browser - Use
pnpm inspector:manualfor manual control