Allow Claude to create flashcards for you with the official Model Context Protocol (MCP) for Rember. Rember helps you study and remember anything you care about by scheduling spaced repetition reviews.
Features and examples:
- Create flashcards from your chats "... I like your answer, help me remember it"
- Create flashcards from your PDFs "Create flashcards from chapter 2 of this PDF"
To run the Rember MCP server using npx
, use the following command:
npx -y @getrember/mcp --api-key=YOUR_REMBER_API_KEY
Make sure to replace YOUR_REMBER_API_KEY
with your actual Rember api key, which you can find in your Settings page. The API key should follow the format rember_
followed by 32 random characters.
Add the following to your claude_desktop_config.json
. See here for more details.
{
"mcpServers": {
"rember": {
"command": "npx",
"args": ["-y", "@getrember/mcp", "--api-key=YOUR_REMBER_API_KEY"]
}
}
}
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".