RE

Rember

Created 6 months ago

Rember MCP allows Claude to create flashcards for you using the Model Context Protocol.

development documentation public

What is Rember?

Create spaced repetition flashcards in [Rember](https://rember.com) to remember anything you learn in your chats

Documentation

Rember MCP

Allow Claude to create flashcards for you with the official Model Context Protocol (MCP) for Rember.

Setup

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.

Usage with Claude Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "rember": {
      "command": "npx",
      "args": ["-y", "@getrember/mcp", "--api-key=YOUR_REMBER_API_KEY"]
    }
  }
}

Available tools

  • create_flashcards: Create flashcards with AI. This tool takes a list of notes from Claude and calls the Rember API to generate flashcards.

Best practices for building MCP servers

  • Set up logging to stderr as early as possible.
  • Create a simple MCP tool first and verify Claude can call it properly.
  • Invest time in iterating on the tool description.
  • Clearly explain what MCP is.
  • Describe the tool inputs thoroughly.
  • Provide examples of how the tool can be used.
  • List examples of how users might invoke the tool.
  • Include a list of rules to guide Claude in using the tool appropriately.
  • Implement retries for transient errors with suitable timeouts.

Server Config

{
  "mcpServers": {
    "rember-server": {
      "command": "npx",
      "args": [
        "rember"
      ]
    }
  }
}

Links & Status

Repository: github.com
Hosted: Yes
Global: No
Official: Yes

Project Info

Hosted Featured
Created At: May 23, 2025
Updated At: Aug 07, 2025
Author: Rember Team
Category: official
License: MIT
Tags:
development documentation public