package.json•702 B
{
"name": "fast-mcp-demo",
"version": "0.1.0",
"description": "Demo project to understand MCP (Model Context Protocol) with TypeScript",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"clean": "rm -rf dist",
"test": "tsx test-server.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"fastmcp": "^3.23.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}