- Flashcardgenerator
Flashcardgenerator
A FastMCP-based MCP server for converting JSON-formatted Markdown content into interactive flashcard pages.
Project Overview
FlashCardMCP is a FastMCP-based MCP service designed to convert Markdown content in JSON/CSV format into interactive flashcard pages. This service is suitable for learning, teaching, knowledge management, and any other scenario you desire, helping users create their own digital flashcard sets.
Content Focus: Utilizes Markdown format, aligning with LLM output, allowing users to concentrate on content creation rather than irrelevant formatting details.
Stable Output: Employs functions to stably generate flashcards, supporting CSS style input to meet personalized needs.
Scenario-Based Templates: Provides pre-built templates for various scenarios, with further expansion planned.
PDF Output: Flashcards can be printed as PDFs (8 cards per sheet), further accommodating different scenarios and real-world applications for use and memorization.
Content
FlashCardMCP / 闪卡生成MCP服务
Version: 10.1
项目介绍
FlashCardMCP 是一个基于 FastMCP 的 MCP 服务,用于将 JSON/CSV 格式的 Markdown 内容转换为交互式闪卡页面。这个服务适用于学习、教学和知识管理以及任何你想要的场景,可以帮助用户创建自己的数字闪卡集。
- 专注内容:使用Markdown格式,符合LLM的输出,让用户专注于内容的输出,而不是格式等其他无关紧要的内容;
- 稳定输出:采用函数稳定生成闪卡,支持CSS格式Style输入,满足个性化需求;
- 场景化模板: 预制模板用于预设的不同场景,后续会进一步拓展;
- PDF输出:闪卡可打印成PDF(8连卡),进一步满足不同场景下,以及现实多种场景下的使用和记忆。
功能特性
- Markdown 支持: 闪卡内容支持完整的 Markdown 语法,包括标题、列表、代码块、表格等
- 交互式闪卡: 点击卡片可以翻转查看背面内容
- 多种模板: 提供 Default、Minimal、Listen 三种不同的闪卡模板
- 语音功能: Listen 模板支持语音播放和听写模式(考虑到兼容性,目前仅是Web Speech API,效果一般)
- 响应式设计: 适配不同屏幕尺寸
- 打印支持: 支持导出 PDF 和打印功能
- 数据验证: 内置数据格式验证功能
- CSV 转换: 支持从 CSV 数据快速创建闪卡
FastMCP 配置
本项目使用 FastMCP 框架构建 MCP 服务,提供以下功能:
- Resources(资源): 通过 GET 端点暴露只读数据
- Tools(工具): 通过 POST 端点提供可执行功能
- 多种返回类型: 支持文本、JSON、图像、音频等格式
可用的MCP工具和资源
服务器通过MCP协议暴露以下工具和资源:
资源
- flashcard-templates
- URI:
resource://flashcard-templates - 描述:获取所有可用闪卡模板的信息和配置
- 返回格式:JSON格式的模板配置信息
- URI:
工具
-
create_flashcards_from_json
- 描述:从JSON数据创建交互式HTML闪卡
- 参数:
cards:闪卡数据列表,包含'front'、'back'和可选的'tags'title:闪卡集标题description:闪卡集描述template:模板类型('minimal'、'default'、'listen')theme:主题('light'、'dark'、'basic'、'advance'、'detail')
- 返回:生成的HTML内容字符串
-
generate_flashcards_pdf
- 描述:从JSON数据生成PDF格式闪卡
- 参数:
cards:闪卡数据列表,包含'front'、'back'和可选的'tags'title:闪卡集标题description:闪卡集描述layout:布局类型('single'或'a4_8')output_path:保存PDF文件的目录路径
- 返回:成功消息,包含文件路径和大小信息
-
convert_csv_to_json
- 描述:将CSV内容转换为闪卡JSON格式
- 参数:
csv_content:原始CSV内容字符串front_columns:卡片正面的列索引(如"0,1")back_columns:卡片背面的列索引(如"2,3")tags_column:标签列索引(可选)has_header:CSV是否有标题行title:闪卡集标题description:闪卡集描述column_separator:多列内容分隔符template:样式模板类型theme:样式主题
- 返回:完整闪卡数据的JSON字符串
-
validate_flashcard_data
- 描述:验证闪卡JSON数据结构
- 参数:
flashcard_json:JSON格式的闪卡数据
- 返回:验证结果消息
闪卡模板
1. Default 模板
- 流式网格布局,每行显示2张卡片
- 适合桌面浏览和批量查看闪卡
2. Minimal 模板
- 单卡片居中显示
- 适合专注学习和逐张复习
3. Listen 模板
- 单卡片 + 底部控制面板
- 支持语音播放和听写模式
- 适合语言学习和语音复习
输出效果展示
项目在 sample/ 目录中提供了多种输出效果的示例:
HTML 闪卡示例
- card_template_sample.html: Default 模板的完整示例,展示流式网格布局和翻转动画效果
- minimal_template_sample.html: Minimal 模板示例,单卡片居中显示,适合专注学习
- listen_template_sample.html: Listen 模板示例,支持语音播放和听写模式
PDF 输出示例
sample/pdf_generate/ 目录包含多种场景的PDF闪卡示例:
- 康奈尔笔记法闪卡_8卡片布局.pdf: 学习方法类闪卡
- 基础测试_8卡片布局.pdf: 基础知识测试闪卡
- Markdown测试_8卡片布局.pdf: Markdown语法支持演示
- 词语表闪卡练习_8卡片布局.pdf: 词汇学习闪卡
- 日文注音测试_8卡片布局.pdf: 多语言支持示例
所有PDF采用A4纸8卡片布局,适合打印和实体使用。
Demo 页面
注意: Demo 页面功能正在开发中,将在后续版本中提供在线演示。
快速开始
安装依赖
使用 UV 安装项目依赖:
uv sync
或者使用标准的 pip 命令:
pip install -e .
运行 MCP 服务
MCP 服务器默认使用 STDIO 传输协议,与 Claude Desktop 等 MCP 客户端兼容:
python server.py
版本记录
Version 10.1 (当前版本)
- 更新了所有README文件中的版本信息
- 修正了MCP工具和资源的描述,确保与实际功能一致
- 更新了MCP客户端配置,使用正确的
uv run命令 - 完善了文档结构和内容
未来版本计划
- 增加更多闪卡模板
- 优化语音功能
- 添加在线Demo页面
- 支持更多导出格式
许可证
本项目采用 GPL 协议。
Server Config
{
"mcpServers": {
"FlashcardGenerator": {
"command": "uv",
"args": [
"--directory",
"/path/to/FlashCardMCP",
"run",
"/server.py"
]
}
}
}Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
WindsurfThe new purpose-built IDE to harness magic
TimeA Model Context Protocol server that provides time and timezone conversion capabilities. This server enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.
Context7Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
Playwright McpPlaywright MCP server
Amap Maps高德地图官方 MCP Server
Serper MCP ServerA Serper MCP Server
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
Tavily Mcp
CursorThe AI Code Editor
ChatWiseThe second fastest AI chatbot™
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
DeepChatYour AI Partner on Desktop
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题;
Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.