package.json•1.71 kB
{
"name": "mcp-openweathermap",
"version": "0.1.3",
"description": "MCP server for OpenWeatherMap API integration",
"type": "module",
"private": false,
"main": "dist/main.js",
"types": "dist/main.d.ts",
"bin": {
"mcp-openweathermap": "./dist/main.js"
},
"scripts": {
"dev": "bun --env-file=.env ./src/main.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "bunx tsc --noEmit",
"typecheck:watch": "bunx tsc --noEmit --watch",
"build": "bunx tsc",
"inspect": "bunx @modelcontextprotocol/inspector --config ./mcp-inspector.json --server openweathermap",
"inspect:built": "bunx @modelcontextprotocol/inspector --config ./mcp-inspector.json --server openweathermap-built",
"inspect:http": "bunx @modelcontextprotocol/inspector --config ./mcp-inspector.json --server openweathermap-http",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run build && changeset publish",
"prepublishOnly": "bun run build"
},
"dependencies": {
"fastmcp": "2.1.3",
"openweather-api-node": "^3.1.5",
"zod": "3.24.4"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/bun": "latest",
"typescript": "^5"
},
"keywords": [
"mcp",
"openweathermap",
"weather",
"api"
],
"author": "Robert Niimi <robertn702@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/robertn702/mcp-openweathermap.git"
},
"bugs": {
"url": "https://github.com/robertn702/mcp-openweathermap/issues"
},
"homepage": "https://github.com/robertn702/mcp-openweathermap#readme",
"publishConfig": {
"access": "public"
}
}