{ "name": "@chrischall/remind-mcp", "version": "1.0.0", "description": "MCP server for Remind (remind.com) — classes, chats, messages and notification settings.", "type": "module", "bin": { "remind-mcp": "dist/index.js" }, "main": "dist/index.js", "mcpName": "io.github.chrischall/remind-mcp", "files": [ "dist", ".claude-plugin", "skills", ".mcp.json", "server.json", "mint.yaml" ], "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/chrischall/remind-mcp.git" }, "license": "MIT", "engines": { "node": ">=22.5" }, "scripts": { "build": "tsc && npm run bundle", "bundle": "esbuild src/index.ts --bundle --alias:zod/v4=./node_modules/zod/v4/index.cjs --platform=node --format=esm --external:dotenv --external:@fetchproxy/server --banner:js='import { createRequire as __createRequire } from \"module\"; const require = __createRequire(import.meta.url);' --outfile=dist/bundle.js", "dev": "node --env-file=.env dist/index.js", "test": "npm run typecheck && vitest run", "test:coverage": "npm run typecheck && vitest run --coverage", "test:watch": "vitest", "typecheck": "tsc -p tsconfig.json --noEmit" }, "dependencies": { "@chrischall/mcp-utils": "^0.28.0", "@fetchproxy/server": "^3.0.1", "@modelcontextprotocol/server": "^2.0.0", "dotenv": "^17.4.2", "zod": "^4.6.2" }, "devDependencies": { "@modelcontextprotocol/client": "^2.0.0", "@types/node": "^26.3.0", "@vitest/coverage-v8": "^5.0.0", "esbuild": "^0.28.2", "typescript": "^7.0.2", "vitest": "^5.0.0" } }