SwitchBot MCP Server

by genm
{ "name": "mcp-server-template", "version": "1.0.0", "description": "A template for creating Model Context Protocol (MCP) servers", "type": "module", "main": "dist/index.js", "bin": { "example-mcp-tool": "dist/index.js" }, "files": [ "dist" ], "engines": { "node": ">=18.0.0" }, "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "tsx src/index.ts", "lint": "eslint . --ext .ts", "test": "vitest", "prepublishOnly": "npm run build", "link": "npm link", "unlink": "npm unlink" }, "keywords": [ "mcp", "model-context-protocol" ], "author": "", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "zod": "^3.0.0" }, "devDependencies": { "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "@vitest/coverage-v8": "^1.0.0", "eslint": "^8.0.0", "tsx": "^4.19.2", "typescript": "^5.0.0", "vite": "^5.0.0", "vitest": "^1.0.0" } }