MCP Flashcards

by No-Smoke

Integrations

  • Enables creating and studying flashcards for JavaScript concepts, with example cards containing JavaScript-specific content like closures.

MCP 플래시카드

플래시카드를 관리하기 위한 MCP 서버 - 플래시카드 덱을 프로그래밍 방식으로 만들고, 연구하고, 구성합니다.

특징

  • 플래시카드 덱을 만들고 관리하세요
  • 카드 추가, 편집 및 삭제
  • 분산 반복 학습 모드
  • 수입/수출 데크
  • 통계 추적
  • 전체 MCP 통합

설치

지엑스피1

구성

MCP 설정에 추가:

{ "mcpServers": { "flashcards": { "command": "npx", "args": ["@no-smoke/mcp-flashcards"], "env": { "FLASHCARDS_DATA_DIR": "./flashcards-data" } } } }

용법

데크 만들기

await createDeck({ name: "JavaScript Basics", description: "Fundamental JavaScript concepts" });

카드 추가

await addCard({ deckId: "deck-id", question: "What is a closure?", answer: "A function that has access to variables in its outer scope" });

공부모드

const card = await getNextCard({ deckId: "deck-id" }); await markCard({ cardId: card.id, correct: true });

개발

# Clone the repository git clone https://github.com/No-Smoke/mcp-flashcards.git cd mcp-flashcards # Install dependencies npm install # Build npm run build # Run tests npm test # Start development server npm run dev

특허

MIT 라이센스 - 자세한 내용은 라이센스 파일을 참조하세요.

-
security - not tested
A
license - permissive license
-
quality - not tested

분산 반복 및 통계 추적과 같은 기능을 갖춘 플래시카드 덱을 프로그래밍 방식으로 만들고, 공부하고, 정리할 수 있는 MCP 서버입니다.

  1. 특징
    1. 설치
      1. 구성
        1. 용법
          1. 데크 만들기
          2. 카드 추가
          3. 공부모드
        2. 개발
          1. 특허

            Related MCP Servers

            • A
              security
              A
              license
              A
              quality
              A MCP server for managing and storing code snippets in various programming languages, allowing users to create, list, and delete snippets via a standardized interface.
              Last updated -
              3
              4
              JavaScript
              MIT License
            • A
              security
              A
              license
              A
              quality
              A tool that dynamically generates and configures MCP servers by automatically creating necessary directories and files according to user specifications.
              Last updated -
              1
              9
              9
              JavaScript
              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

            View all related MCP servers

            ID: kb88jl51cy