package.jsonโข885 B
{
"name": "hello-mcp",
"version": "1.0.0",
"description": "Simple MCP server with Lambda deployment",
"main": "index.ts",
"type": "module",
"scripts": {
"dev": "npx fastmcp dev index.ts",
"build": "tsc",
"build:lambda": "tsc && cp package.json dist/",
"deploy": "npm run build:lambda && sam deploy",
"start": "tsx server.ts",
"start:prod": "npm run build && node dist/server.js",
"test:local": "npx @modelcontextprotocol/inspector inspector-config.json",
"test:fargate": "npx @modelcontextprotocol/inspector inspector-fargate-config.json"
},
"keywords": [
"mcp",
"fastmcp",
"lambda"
],
"license": "MIT",
"dependencies": {
"fastmcp": "latest",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.145",
"@types/node": "^20.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
}
}