================== /// MCP /// /// REM /// ================== [server:online] [protocol:ready]
rember-mcp
by rember
Official Model Context Protocol (MCP) server that lets Claude create Rember flashcards from chat notes or PDFs.
48
5
Enterprise01
create_flashcards
Create flashcards with AI. This tool takes a list of notes from Claude, it calls the Rember API to generate a few flashcards for each note. After learning something new in your chat with Claude, you can ask "help me remember this" or "create a few flashcards" or "add to Rember".
Installation
Prerequisites
1. Node.js ≥ 18.x and npm (or pnpm/yarn) installed.
2. A running vector-store or database backend if you plan to persist context.
Steps
1. Clone the repository
git clone https://github.com/rember/rember-mcp.git && cd rember-mcp
2. Install dependencies
npm install # or pnpm install / yarn install
3. (Optional) Build the TypeScript sources for production
npm run build # outputs compiled JS to ./dist
4. Configure the server
• Copy .env.example to .env and fill in required values
- PORT=3000 # TCP port the MCP server will listen on
- REMBER_API_KEY=<your-key> # API key for downstream Rember services
- STORAGE_URL=<postgres|redis|vector-db connection string>
- LOG_LEVEL=info
• Adjust config/*.ts to point to the correct vector store or database layer if you need advanced tuning.
5. Start the development server
# Runs ts-node with hot-reload
npm run dev
or start the production build
npm start # shorthand for: node dist/index.js
6. Verify
curl http://localhost:3000/healthz
→ should return {"status":"ok"}
Docker (optional)
docker build -t rember-mcp:latest .
docker run -p 3000:3000 --env-file .env rember-mcp:latest
Documentation
License: MIT License
Updated 7/30/2025