Overview
Rember MCP is a Model Context Protocol (MCP) server designed for Rember, which helps users create flashcards to enhance their study and memory retention through spaced repetition.
To use Rember MCP, run the server using the command npx -y @getrember/mcp --api-key=YOUR_REMBER_API_KEY, replacing YOUR_REMBER_API_KEY with your actual API key from Rember.
- Create flashcards from chat interactions. - Generate flashcards from PDF documents. - Integration with Claude for seamless flashcard creation.
- Creating flashcards from important notes during study sessions.
- Generating flashcards from specific chapters of textbooks in PDF format.
- Enhancing memory retention through spaced repetition reviews.
Add to your AI client
Use these steps to connect Rember MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"rember-mcp-rember": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-rember-mcp-rember"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"rember-mcp-rember": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-rember-mcp-rember"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"rember-mcp-rember": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-rember-mcp-rember"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"rember-mcp-rember": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-rember-mcp-rember"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"rember-mcp-rember": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-rember-mcp-rember"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"rember-mcp-rember": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-rember-mcp-rember"
]
}
}
}FAQ
Can I create flashcards from any document?
Yes! You can create flashcards from both chat interactions and PDF documents.
Is there a specific format for the API key?
Yes, the API key should start with `rember_` followed by 32 random characters.
How does spaced repetition work in Rember?
Rember schedules reviews of flashcards at increasing intervals to help reinforce memory retention.