package.jsonโข943 B
{
"name": "remote-mcp-webapp-node",
"version": "1.0.0",
"main": "server.js",
"description": "A Model Context Protocol (MCP) server built with Express.js that provides weather information using the National Weather Service API",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "node test-client.js",
"test:azure": "node test-client.js --url=https://<APP-SERVICE-NAME>.azurewebsites.net",
"build": "echo 'No build step required for this Node.js app'"
},
"keywords": [
"mcp",
"model-context-protocol",
"weather",
"api",
"express",
"nodejs",
"jsonrpc"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"axios": "^1.9.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"helmet": "^8.1.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}