{
  "name": "@mcp-use/inspector",
  "type": "module",
  "version": "10.0.1",
  "description": "MCP Inspector - A tool for inspecting and debugging MCP servers",
  "author": "",
  "license": "MIT",
  "homepage": "https://github.com/mcp-use/mcp-use#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mcp-use/mcp-use.git",
    "directory": "libraries/typescript/packages/inspector"
  },
  "bugs": {
    "url": "https://github.com/mcp-use/mcp-use/issues"
  },
  "keywords": [
    "mcp",
    "inspector",
    "debug",
    "tools"
  ],
  "exports": {
    ".": {
      "types": "./dist/server/index.d.ts",
      "import": "./dist/server/index.js"
    },
    "./client": {
      "types": "./dist/client/index.d.ts",
      "import": "./dist/client/index.js"
    }
  },
  "main": "./dist/server/index.js",
  "types": "./dist/server/index.d.ts",
  "bin": {
    "mcp-inspect": "./dist/cli.js"
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": "^20.19.0 || >=22.12.0"
  },
  "peerDependencies": {
    "express": "^4.21.2 || ^5.0.0",
    "mcp-use": ">=1.32.1-canary.0",
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0",
    "react-router": "^7.12.0"
  },
  "peerDependenciesMeta": {
    "express": {
      "optional": true
    }
  },
  "dependencies": {
    "@hono/node-server": "^1.19.13",
    "@modelcontextprotocol/ext-apps": "^1.0.1",
    "@modelcontextprotocol/sdk": "^1.26.0",
    "@paper-design/shaders-react": "^0.0.72",
    "@radix-ui/react-alert-dialog": "^1.1.15",
    "@radix-ui/react-avatar": "^1.1.11",
    "@radix-ui/react-checkbox": "^1.3.3",
    "@radix-ui/react-dialog": "^1.1.15",
    "@radix-ui/react-dropdown-menu": "^2.1.16",
    "@radix-ui/react-label": "^2.1.8",
    "@radix-ui/react-popover": "^1.1.15",
    "@radix-ui/react-select": "^2.2.6",
    "@radix-ui/react-switch": "^1.2.6",
    "@radix-ui/react-tooltip": "^1.2.8",
    "@scarf/scarf": "^1.4.0",
    "@tailwindcss/vite": "^4.2.0",
    "@types/react-syntax-highlighter": "^15.5.13",
    "class-variance-authority": "^0.7.1",
    "clsx": "^2.1.1",
    "cmdk": "^1.1.1",
    "hono": "^4.12.12",
    "lucide-react": "^0.562.0",
    "markdown-to-jsx": "^9.7.4",
    "motion": "^12.34.2",
    "next-themes": "^0.4.6",
    "open": "^11.0.0",
    "posthog-node": "^5.24.17",
    "react-resizable-panels": "^4.6.4",
    "react-syntax-highlighter": "^16.1.0",
    "sonner": "^2.0.7",
    "tailwind-merge": "^3.5.0",
    "zod": "4.3.5",
    "mcp-use": "1.32.1"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@playwright/test": "^1.58.2",
    "@radix-ui/react-slot": "^1.2.4",
    "@types/express": "^5.0.6",
    "@vitejs/plugin-react": "^6.0.0",
    "concurrently": "^9.2.1",
    "emulate": "0.5.0",
    "eslint": "^9.39.2",
    "express": "^5.2.1",
    "oauth2-mock-server": "^8.2.2",
    "react": "^19.2.3",
    "react-dom": "^19.2.3",
    "react-router": "^7.12.0",
    "tailwindcss": "^4.2.0",
    "tsup": "^8.5.1",
    "tsx": "^4.21.0",
    "tw-animate-css": "^1.4.0",
    "vite": "^8.0.5",
    "vitest": "^4.1.0",
    "wait-on": "^9.0.4"
  },
  "scripts": {
    "dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
    "dev:client": "rimraf node_modules/.vite && vite --port 3000",
    "dev:server": "VITE_DEV=true tsx watch src/server/server.ts",
    "dev:standalone": "tsx watch src/server/server.ts",
    "build": "npm run build:client && npm run build:client-exports && npm run build:server && npm run build:cli && npm run build:cdn",
    "build:cdn": "vite build --config vite.cdn.config.ts",
    "build:client": "vite build",
    "build:client-exports": "tsup --config tsup.client.ts && tsc -p tsconfig.client.json --emitDeclarationOnly --declaration",
    "build:server": "tsup src/server/*.ts --format esm --out-dir dist/server && tsc -p tsconfig.server.json --emitDeclarationOnly --declaration",
    "build:cli": "tsup src/server/cli.ts --format esm --out-dir dist/",
    "start": "node dist/server/server.js",
    "preview": "vite preview",
    "type-check": "tsc --noEmit",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "test:e2e": "playwright test",
    "test:e2e:ui": "playwright test --ui",
    "test:e2e:debug": "playwright test --debug",
    "test:e2e:builtin": "node tests/e2e/scripts/run-test-matrix.mjs builtin",
    "test:e2e:prod": "node tests/e2e/scripts/run-test-matrix.mjs prod",
    "test:e2e:mix": "node tests/e2e/scripts/run-test-matrix.mjs mix",
    "test:e2e:prod:ui": "TEST_MODE=production playwright test --ui",
    "test:e2e:codegen": "playwright codegen http://localhost:3000/inspector",
    "test:e2e:report": "playwright show-report",
    "test:e2e:python": "node tests/e2e/scripts/run-python-e2e.mjs",
    "test:unit": "vitest run",
    "test:unit:watch": "vitest",
    "test:e2e:tunnel": "node tests/e2e/scripts/run-tunnel-test.mjs",
    "install:yarn": "yarn install",
    "install:pnpm": "pnpm install",
    "install:npm": "npm install",
    "lint:yarn": "yarn eslint . --fix",
    "lint:npm": "npm run lint:fix",
    "lint:pnpm": "pnpm lint:fix"
  }
}