{ "name": "@servation/memora-mcp", "version": "0.2.0", "mcpName": "io.github.Servation/memora-mcp", "type": "module", "description": "Interactive flashcards, quizzes, and cloze cards with spaced repetition for Claude Desktop, as an MCP App (inline UI).", "license": "MIT", "author": "Servation", "homepage": "https://github.com/Servation/memora-mcp#readme", "repository": { "type": "git", "url": "git+https://github.com/Servation/memora-mcp.git" }, "bugs": { "url": "https://github.com/Servation/memora-mcp/issues" }, "keywords": [ "mcp", "model-context-protocol", "mcp-server", "mcp-apps", "claude", "claude-desktop", "flashcards", "spaced-repetition", "fsrs", "quiz", "anki" ], "engines": { "node": ">=20.11" }, "bin": { "memora-mcp": "dist/main.js" }, "files": [ "dist", "data/decks.sample.json", "README.md", "LICENSE" ], "scripts": { "build:ui": "cross-env INPUT=mcp-app.html vite build", "watch:ui": "cross-env INPUT=mcp-app.html vite build --watch", "typecheck": "tsc --noEmit", "test": "vitest run", "test:watch": "vitest", "build:server": "tsc -p tsconfig.server.json", "build": "npm run build:ui && npm run build:server", "prepack": "npm run build", "serve": "tsx main.ts", "serve:stdio": "tsx main.ts --stdio", "start": "cross-env NODE_ENV=development npm run build:ui && npm run serve", "start:stdio": "cross-env NODE_ENV=development npm run build:ui 1>&2 && npm run serve:stdio", "dev": "cross-env NODE_ENV=development concurrently \"npm run watch:ui\" \"npm run serve\"" }, "dependencies": { "@modelcontextprotocol/ext-apps": "^1.7.0", "@modelcontextprotocol/sdk": "^1.29.0", "cors": "^2.8.5", "express": "^5.1.0", "ts-fsrs": "^5.4.1", "zod": "^4.1.13" }, "devDependencies": { "@types/cors": "^2.8.19", "@types/express": "^5.0.0", "@types/node": "22.10.0", "@types/react": "^19.2.2", "@types/react-dom": "^19.2.2", "@vitejs/plugin-react": "^4.3.4", "concurrently": "^9.2.1", "cross-env": "^10.1.0", "react": "^19.2.0", "react-dom": "^19.2.0", "tsx": "^4.21.0", "typescript": "^5.9.3", "vite": "^6.0.0", "vite-plugin-singlefile": "^2.3.0", "vitest": "^4.1.10" } }