package.json•729 B
{
"name": "weather-mcp-server",
"version": "1.0.0",
"description": "MCP server that provides weather data from Open-Meteo API",
"type": "module",
"main": "./build/index.js",
"bin": {
"weather-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"weather",
"open-meteo"
],
"author": "",
"license": "ISC",
"files": [
"build"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.21.0",
"express": "^5.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/express": "^5.0.5",
"@types/node": "^24.10.0",
"typescript": "^5.9.3"
}
}