36 lines
945 B
JSON
36 lines
945 B
JSON
{
|
|
"name": "@modelcontextprotocol/inspector-server",
|
|
"version": "0.4.0",
|
|
"description": "Server-side application for the Model Context Protocol inspector",
|
|
"license": "MIT",
|
|
"author": "Anthropic, PBC (https://anthropic.com)",
|
|
"homepage": "https://modelcontextprotocol.io",
|
|
"bugs": "https://github.com/modelcontextprotocol/inspector/issues",
|
|
"type": "module",
|
|
"bin": {
|
|
"mcp-inspector-server": "build/index.js"
|
|
},
|
|
"files": [
|
|
"build"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node build/index.js",
|
|
"dev": "node --import tsx --watch --watch-preserve-output src/index.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@types/ws": "^8.5.12",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.6.2"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.4.1",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.21.0",
|
|
"ws": "^8.18.0",
|
|
"zod": "^3.23.8"
|
|
}
|
|
}
|