package.json•1.03 kB
{
"name": "@modelcontextprotocol/server-my-little-mcp",
"version": "0.1.0",
"description": "Simple MCP server with HTTP transport providing time and random number utilities",
"license": "MIT",
"author": "Swan",
"type": "module",
"module": "./src/index.ts",
"bin": {
"mcp-server-my-little-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p ./tsconfig.json && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"dev": "tsx src/index.ts",
"dev:http": "tsx src/index.ts --transport=http --port=8004",
"start": "node dist/index.js",
"start:http": "node dist/index.js --transport=http --port=8004"
},
"dependencies": {
"@modelcontextprotocol/sdk": "*",
"zod": "^3.22.4",
"express": "^4.18.2",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/node": "^22",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"shx": "^0.3.4",
"typescript": "^5.6.2",
"tsx": "^4.7.0"
}
}