38 lines
998 B
JSON
38 lines
998 B
JSON
{
|
|
"name": "@modelcontextprotocol/inspector-server",
|
|
"version": "0.1.5",
|
|
"description": "Server-side application for the Model Context Protocol inspector",
|
|
"license": "MIT",
|
|
"author": "Anthropic, PBC (https://anthropic.com)",
|
|
"homepage": "https://modelcontextprotocol.github.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": "tsx watch --clear-screen=false src/index.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/eventsource": "^1.1.15",
|
|
"@types/express": "^4.17.21",
|
|
"@types/ws": "^8.5.12",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.6.2"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "0.5.0",
|
|
"cors": "^2.8.5",
|
|
"eventsource": "^2.0.2",
|
|
"express": "^4.21.0",
|
|
"ws": "^8.18.0",
|
|
"zod": "^3.23.8"
|
|
}
|
|
}
|