Mochi MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Mochi MCP Servercreate a flashcard about photosynthesis in my biology deck"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Mochi MCP Server
An MCP server for creating and managing Mochi Cards flashcards via AI.
Supports both HTTP/SSE (for Vercel deployment) and stdio (for local use with Claude Desktop).
Features
Card Operations
create_card- Create a new cardget_card- Get card detailslist_cards- List cardsupdate_card- Update a carddelete_card- Delete a cardadd_attachment- Add attachment to a carddelete_attachment- Delete attachmentcreate_cards_bulk- Create multiple cards at once
Deck Operations
create_deck- Create a new deckget_deck- Get deck detailslist_decks- List all decksupdate_deck- Update a deckdelete_deck- Delete a deck
Template Operations
create_template- Create a new templateget_template- Get template detailslist_templates- List all templates
Review
get_due_cards- Get cards due for review
Related MCP server: Mochi MCP Server
Deployment
Deploy to Vercel
Click the deploy button above
Set the
MOCHI_API_KEYenvironment variableDeploy
API Endpoints
GET /- Server info pagePOST /api/mcp- MCP JSON-RPC endpointGET /api/mcp/sse- SSE endpoint for streaming connectionsPOST /api/mcp/sse- SSE message endpoint
Example Request
curl -X POST https://your-domain.vercel.app/api/mcp \
-H "Content-Type: application/json" \
-H "x-mochi-api-key: YOUR_API_KEY" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}'Local Development
Installation
npm installDevelopment Server
npm run devBuild
npm run buildStdio Mode (Claude Desktop)
For local use with Claude Desktop, use the stdio transport:
Build stdio version
npm run build:stdioClaude Desktop Configuration
Add the following to ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"mochi": {
"command": "node",
"args": ["/path/to/mochi-mcp-server/dist/stdio.js"],
"env": {
"MOCHI_API_KEY": "your-api-key-here"
}
}
}
}Getting Mochi API Key
Log in to Mochi Cards
Go to Account Settings → API to get your API key
Usage
Creating Cards
Card content is in Markdown format. Use --- to separate front and back:
What is the capital of France?
---
ParisBulk Card Creation
{
"method": "tools/call",
"params": {
"name": "create_cards_bulk",
"arguments": {
"deck_id": "deck-id",
"cards": [
{ "content": "Question 1\n---\nAnswer 1" },
{ "content": "Question 2\n---\nAnswer 2", "tags": ["tag1", "tag2"] }
]
}
}
}Notes
Mochi API only accepts one concurrent request per account
Be aware of rate limits (429 error)
Deck deletion cannot be undone
License
ISC
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityCmaintenanceEnables AI assistants to manage Anki flashcard decks and cards through natural language, supporting deck creation, card additions (basic and cloze types), and review queue management.Last updated6172MIT
- AlicenseBqualityDmaintenanceEnables AI agents to manage Mochi.cards flashcards, including browsing decks, searching cards, and creating/updating/deleting cards with safety features like two-phase commits and typed confirmations.Last updated20171MIT
- Alicense-qualityCmaintenanceEnables interaction with the Anki desktop flashcard application through the Anki-Connect plugin. Supports managing decks, cards, notes, and models, allowing AI assistants to create and query flashcards through natural language.Last updated171ISC
- AlicenseAqualityDmaintenanceEnables AI assistants to manage Anki flashcard collections by creating, searching, and updating cards through a standardized interface. It supports media handling, batch operations, and review scheduling via the AnkiConnect add-on.Last updated62MIT
Related MCP Connectors
AI-powered YouTube to flashcards with spaced repetition and Anki export
Voice-led, FSRS-scheduled flashcards from YouTube, PDFs, web, or text. Auto-graded quizzes.
Turn AI chats into vocabulary: capture words and grammar into spaced-repetition flashcards.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shunkus/mochi-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server