package.json•1.04 kB
{
"name": "mcp-weather-server",
"version": "1.0.0",
"description": "A Model Context Protocol (MCP) server that provides weather information for any city using the Open-Meteo API",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"dev:watch": "tsc --watch",
"dev:inspector": "tsc && mcp-inspector",
"inspector": "mcp-inspector",
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"mcp",
"weather",
"api",
"typescript",
"model-context-protocol"
],
"author": "Melo Guan",
"license": "ISC",
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.16.8",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"jest": "^30.1.3",
"ts-jest": "^29.4.4",
"typescript": "^5.0.0"
}
}