a stdio mcp server for apple mail
1{
2 "name": "mailgenie",
3 "version": "1.0.0",
4 "description": "MCP server for read-only access to macOS Mail.app",
5 "type": "module",
6 "license": "MIT",
7 "repository": {
8 "type": "git",
9 "url": "https://tangled.org/aparker.io/mailgenie"
10 },
11 "engines": {
12 "bun": ">=1.0.0"
13 },
14 "scripts": {
15 "build": "bun run tsc",
16 "start": "bun run dist/index.js",
17 "test": "bun test",
18 "lint": "bunx biome check src/",
19 "lint:fix": "bunx biome check --write src/",
20 "typecheck": "bun run tsc --noEmit"
21 },
22 "dependencies": {
23 "@modelcontextprotocol/sdk": "^1.12.1",
24 "better-sqlite3": "^11.9.1",
25 "zod": "^3.24.2"
26 },
27 "devDependencies": {
28 "@biomejs/biome": "^1.9.0",
29 "@types/better-sqlite3": "^7.6.13",
30 "@types/bun": "^1.3.9",
31 "@types/node": "^22.15.3",
32 "typescript": "^5.8.3"
33 }
34}