package.json•1.21 kB
{
"name": "mcp-demo",
"version": "0.1.0",
"description": "Simple hello world MCP server",
"license": "MIT",
"author": "Moe03 (https://github.com/moe03)",
"homepage": "https://github.com/moe03/mcp-hello-world",
"bugs": "https://github.com/moe03/mcp-demo/issues",
"type": "module",
"bin": {
"mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"server": "node dist/index.js",
"watch": "tsc --watch",
"start": "npx -y supergateway --stdio \"npm run server\" --port 8000 --baseUrl http://localhost:8000 --ssePath /sse --messagePath /message --cors"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@langchain/anthropic": "^0.3.17",
"@langchain/core": "^0.3.44",
"@langchain/langgraph": "^0.2.63",
"@langchain/mcp-adapters": "^0.4.2",
"@modelcontextprotocol/sdk": "1.0.1",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/node-fetch": "^2.6.12",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"eventsource": "^3.0.6",
"express": "^5.1.0",
"node-fetch": "^3.3.2",
"zod": "^3.24.2"
},
"devDependencies": {
"shx": "^0.3.4",
"typescript": "^5.6.2"
}
}