Skip to main content
Glama

FlashCardsMCP

by mtib

FlashCardsMCP

This is a dockerized Python Model Context Protocol (MCP) server for managing flash card projects. It uses OpenAI embeddings and SQLite for semantic search and storage.

Features

  • List all project names and ids
  • Semantic search for project by name (using OpenAI embeddings)
  • Get random flash card by project id
  • Add flash card to project (with question, answer, optional hint, optional description)
  • List all flash cards by project
  • Semantic search for flash cards by query (using OpenAI embeddings)
  • Global semantic search for cards across all projects
  • Retrieve a card by its id
  • All API/tool responses include a type field: project or card
  • No binary embedding data is ever returned in API responses

API/Tool Design

  • All tools raise ValueError for not found or empty results
  • Project and card creation tools return the full object, not just the id
  • See .github/copilot-instructions.md for code generation rules

Getting Started

  1. Install dependencies:
    pip install -r requirements.txt
  2. Run the server:
    python main.py
  3. Run with Docker:
    docker build -t flash-card-mcp . # Run with database persistence (recommended): docker run -v $(pwd)/storage:/app/storage/database.db flash-card-mcp

Environment Variables

  • OPENAI_API_KEY: Required. Set this environment variable to your OpenAI API key to enable embedding generation. Example:
    export OPENAI_API_KEY=sk-...your-key...
    You must set this variable before running the server or running the Docker container.

Usage

This server exposes its API via the Model Context Protocol (MCP) using FastMCP. You can call the following tools:

  • get_all_projects() → List all projects
  • add_project(name) → Create a new project (returns full project dict)
  • search_project_by_name(name) → Semantic search for a project (returns full project dict)
  • get_random_card_by_project(project_id) → Get a random card from a project
  • add_card(project_id, question, answer, hint=None, description=None) → Add a card (returns full card dict)
  • get_all_cards_by_project(project_id) → List all cards in a project
  • search_cards_by_embedding(project_id, query) → Semantic search for cards in a project
  • global_search_cards_by_embedding(query) → Semantic search for cards across all projects
  • get_card_by_id(card_id) → Retrieve a card by its id

All returned objects include a type field and never include binary embedding data.

Development

  • All project and card data is stored in SQLite (database.db)
  • Embeddings are generated using OpenAI's text-embedding-ada-002 model
  • The server is implemented in main.py and db.py
  • See .github/copilot-instructions.md for code and API rules

Inspector

npx @modelcontextprotocol/inspector docker 'run -e OPENAI_API_KEY=sk-...your-key... -v /<path>/storage:/app/storage --rm -i flash-card-mcp

For more details, see the code and docstrings in main.py and db.py.

-
security - not tested
F
license - not found
-
quality - not tested

A dockerized Python MCP server that manages flash card projects using OpenAI embeddings and SQLite, enabling semantic search and storage of flash cards across projects.

  1. Features
    1. API/Tool Design
      1. Getting Started
        1. Environment Variables
          1. Usage
            1. Development
              1. Inspector

            Related MCP Servers

            • -
              security
              A
              license
              -
              quality
              A Python-based MCP server that integrates the TapTools API, enabling AI models to fetch Cardano blockchain data, including tokens, NFTs, market stats, and wallet info, through standardized tools.
              Last updated -
              Python
              MIT License
            • -
              security
              F
              license
              -
              quality
              An MCP server that enables AI assistants like Claude to interact with Anki flashcard decks, allowing users to create, manage, and update flashcards through natural language conversations.
              Last updated -
              1
              TypeScript
            • A
              security
              F
              license
              A
              quality
              An MCP server that integrates Claude with Anki flashcards, allowing users to review due cards and create new flashcards directly through conversation.
              Last updated -
              6
              8
              Python
              • Apple
            • -
              security
              A
              license
              -
              quality
              An MCP server for creating, studying, and organizing flashcard decks programmatically with features like spaced repetition and statistics tracking.
              Last updated -
              1
              TypeScript
              MIT License

            View all related MCP servers

            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/mtib/flash-cards-mcp'

            If you have feedback or need assistance with the MCP directory API, please join our Discord server