package.json•1.29 kB
{
"name": "mcp-boilerplate",
"version": "0.1.0",
"description": "Global MCP server boilerplate with example tools and prompts",
"author": {
"name": "Srikanth Nani",
"url": "https://github.com/iamsrikanthnani",
"twitter": "@truly_sn"
},
"license": "MIT",
"homepage": "https://github.com/iamsrikanthnani/mcp-boilerplate",
"repository": {
"type": "git",
"url": "git+https://github.com/iamsrikanthnani/mcp-boilerplate.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"tools",
"server",
"boilerplate",
"sse"
],
"type": "module",
"bin": {
"mcp-boilerplate": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "node --loader ts-node/esm src/index.ts",
"start:sse": "node dist/index.js",
"start:pm2": "pm2 start process.json",
"dev": "nodemon --exec node --loader ts-node/esm src/index.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.21.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"nodemon": "^3.0.1",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.6.2"
}
}