# Flashcard Maker — REST API endpoint `flashcard-maker`

Turn a list of front/back pairs into a flashcard deck and return the numbered cards plus ready-to-import formats: CSV (Front,Back), tab-separated text for Anki and Quizlet, JSON, Markdown, and a plain-text study sheet. Optionally shuffles the deck (deterministic with a seed).

- Category: education
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/flashcard-maker/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/flashcard-maker/
- Same tool on the other surface: https://findutils.com/mcp/flashcard-maker/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/flashcard-maker/execute \
  -H "Content-Type: application/json" \
  -d '{
    "cards": [
      {
        "front": "What is React?",
        "back": "A JavaScript library for building user interfaces"
      }
    ]
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/flashcard-maker
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `cards` | array | yes | Cards: { front, back }. Cards with an empty side are skipped. |
| `title` | string | no | Deck title. Default "Flashcards". |
| `shuffle` | boolean | no | Shuffle the cards. Default false. Default: `false`. |
| `seed` | integer | no | Seed for the shuffle. Same seed → same order. |

Example arguments (verified):

```json
{
  "cards": [
    {
      "front": "What is React?",
      "back": "A JavaScript library for building user interfaces"
    }
  ]
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Then ask the client to call `findutils:flashcard_maker`. Full MCP reference: https://findutils.com/mcp/flashcard-maker/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
