a fancy canvas mcp server!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 21 lines 546 B view raw
1{ 2 "name": "canvas-mcp", 3 "version": "0.1.0", 4 "type": "module", 5 "scripts": { 6 "dev": "bun run --hot src/index.ts", 7 "build": "bun build --target=bun --production --outdir=dist ./src/index.ts", 8 "start": "bun run dist/index.js", 9 "generate-key": "bun run scripts/generate-key.ts", 10 }, 11 "dependencies": { 12 "@modelcontextprotocol/sdk": "^1.26.0", 13 "nodemailer": "^8.0.1", 14 "nodemailer-dkim": "^1.0.5", 15 "zod": "^3.23.8" 16 }, 17 "devDependencies": { 18 "@types/bun": "latest", 19 "@types/nodemailer": "^7.0.10" 20 } 21}