package.json•1.46 kB
{
"name": "@timlukahorstmann/mcp-weather",
"version": "0.4.2",
"bin": {
"mcp-weather": "./build/index.js"
},
"description": "MCP server that provides hourly and daily weather forecasts using the AccuWeather API",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "ts-node --esm src/index.ts",
"test": "jest",
"prepare": "npm run build",
"lint": "eslint \"src/**/*.{ts,js}\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"axios": "^1.9.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/istanbul-lib-coverage": "^2.0.6",
"@types/istanbul-reports": "^3.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.3",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"eslint": "^9.26.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimLukaHorstmann/mcp-weather.git"
},
"keywords": [
"mcp",
"weather",
"accuweather",
"llm",
"ai"
],
"author": "Tim Luka Horstmann",
"license": "MIT",
"directories": {
"test": "tests"
},
"bugs": {
"url": "https://github.com/TimLukaHorstmann/mcp-weather/issues"
},
"homepage": "https://github.com/TimLukaHorstmann/mcp-weather#readme"
}