package.json•784 B
{
"name": "sample-mcp-server",
"version": "1.0.0",
"description": "Simple Express MCP server using the official MCP package",
"main": "dist/index.js",
"author": "matsjfunke",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"inspector": "pnpm dlx @modelcontextprotocol/inspector@latest",
"start": "node dist/index.js",
"clean": "rm -rf dist"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1",
"@types/jsforce": "^1.11.5",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.2",
"jsforce": "^3.10.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}