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
Add this skill
npx mdskills install rember/rember-mcpWell-documented MCP server with clear setup and excellent development best practices guide
1# Rember MCP23Allow Claude to create flashcards for you with the official [Model Context Protocol (MCP)](https://modelcontextprotocol.com/) for [Rember](https://rember.com/). Rember helps you study and remember anything you care about by scheduling spaced repetition reviews.45Features and examples:67- **Create flashcards from your chats** _"... I like your answer, help me remember it"_8- **Create flashcards from your PDFs** _"Create flashcards from chapter 2 of this PDF"_9101112## Setup1314To run the Rember MCP server using `npx`, use the following command:1516```17npx -y @getrember/mcp --api-key=YOUR_REMBER_API_KEY18```1920Make sure to replace `YOUR_REMBER_API_KEY` with your actual Rember api key, which you can find in your [Settings page](https://rember.com/settings/mcp-api). The API key should follow the format `rember_` followed by 32 random characters.2122### Usage with Claude Desktop2324Add the following to your `claude_desktop_config.json`. See [here](https://modelcontextprotocol.io/quickstart/user) for more details.2526```json27{28 "mcpServers": {29 "rember": {30 "command": "npx",31 "args": ["-y", "@getrember/mcp", "--api-key=YOUR_REMBER_API_KEY"]32 }33 }34}35```3637## Available tools3839- `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".4041## Best practices for building MCP servers4243Here's a collection of lessons we learned while developing the Rember MCP server:4445- Set up logging to `stderr` as early as possible, it's essential for debugging46- Create a simple MCP tool first and verify Claude can call it properly47- Invest time in iterating on the tool description:4849 - Include details about your product and its URL. This serves two purposes: it helps Claude use the tool properly and allows Claude to answer user questions about the product50 - Clearly explain what MCP is, in a few instances Claude hallucinated that MCP stands for "Multiple Choice Prompts", yikes51 - Describe the tool inputs thoroughly52 - Explain what happens after Claude calls the tool, we clarify that the input notes array is sent to the Rember API, which generates flashcards for each note53 - Provide examples of how the tool can be used (e.g., "create flashcards from a conversation with Claude," "create flashcards from PDFs"), and give Claude specific instructions for each use case54 - List examples of how users might invoke the tool (e.g., "help me remember this," "add to Rember," "create a few flashcards")55 - Include a list of rules to guide Claude in using the tool appropriately5657- Use the tool call response strategically, it's not shown directly to users but interpreted by Claude:58 - On success, the Rember API does not return the number of created flashcards, all Claude knows is the number of created rembs. We specify this to Claude because otherwise it tends to hallucinate the number of created flashcards59 - For users who've reached their monthly limit, we instruct Claude to inform them about the Rember Pro subscription option with the relevant URL60- Implement retries for transient errors with suitable timeouts61- We collected enough edge cases that testing manually on Claude Desktop (our main target MCP client) became cumbersome. We created a suite of unit tests by simulating Claude Desktop behavior by calling the Claude API with the system prompt from claude.ai. In the current iteration, each test simulates a chat with Claude Desktop for manual inspection and includes a few simple assertions6263What's missing:6465- Telemetry and observability, currently we are blind if something goes wrong66- More exhaustive error handling67- More iterations on the tool description68- More automated tests69
Full transparency — inspect the skill content before installing.