loading…
Search for a command to run...
loading…
Flashcard AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
Flashcard AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
Flashcard Ai MCP provides AI-powered tools via the Model Context Protocol (MCP).
| Tool | Description |
|---|---|
create_deck |
Create a new flashcard deck. Optionally provide initial cards as JSON array of { |
add_card |
Add a flashcard to an existing deck. Creates the deck if it doesn't exist. |
quiz_session |
Start a quiz session from a deck. Modes: standard (front->back), reverse (back-> |
get_stats |
Get deck statistics and optionally record quiz results. Results format: JSON arr |
pip install meok-flashcard-ai-mcp
Add to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"flashcard-ai": {
"command": "python",
"args": ["-m", "meok_flashcard_ai_mcp.server"]
}
}
}
from mcp.server.fastmcp import FastMCP
# This server exposes 4 tool(s) via MCP
# See server.py for full implementation
MIT © MEOK AI Labs
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"flashcard-ai-mcp": {
"command": "npx",
"args": []
}
}
}