package.json•818 B
{
"name": "mcp-playground",
"version": "1.0.0",
"description": "MCP Server with Stdio and SSE Transport support",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"dev:sse": "tsx src/sse-server.ts",
"start": "node dist/index.js",
"start:sse": "node dist/sse-server.js",
"watch": "tsc --watch"
},
"keywords": [
"mcp",
"model-context-protocol",
"stdio",
"sse",
"server-sent-events"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"express": "^4.18.2",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/node": "^20.10.0",
"typescript": "^5.3.3",
"tsx": "^4.7.0"
}
}