package.json•1.01 kB
{
"name": "@oharkins/weatherxm-mcp-server",
"version": "2.0.0",
"description": "MCP server to access comprehensive weather data from the WeatherXM Pro decentralized weather network",
"main": "dist/index.js",
"module": "./src/index.ts",
"type": "module",
"scripts": {
"build": "npx @smithery/cli build",
"build:tsc": "tsc",
"dev": "npx @smithery/cli dev",
"dev:tsc": "tsx src/index.ts",
"start": "npm run build:tsc && node dist/index.js"
},
"keywords": [
"weather",
"mcp",
"weatherxm",
"forecast",
"historical-data"
],
"author": "Odis Harkins",
"email": "odisjamesharkins@gmail.com",
"url": "https://github.com/oharkins/weatherxm-mcp-server",
"repository": {
"type": "git",
"url": "https://github.com/oharkins/weatherxm-mcp-server.git"
},
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"node-fetch": "^3.3.2",
"zod": "^3.25.46"
},
"devDependencies": {
"@types/node": "^24.0.12",
"tsx": "^4.20.3",
"typescript": "^5.0.0"
}
}