# Report Card Generator — REST API endpoint `report-card-generator`

Generate a report card from a list of subjects with letter grades and credits and return the credit-weighted GPA on a 4.0 scale, per-subject grade points, total credits, a plain-text card, and a standalone HTML card. Grades: A+ A A- B+ B B- C+ C C- D+ D D- F.

- 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/report-card-generator/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/report-card-generator/
- Same tool on the other surface: https://findutils.com/mcp/report-card-generator/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/report-card-generator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "subjects": [
      {
        "name": "Math",
        "grade": "A",
        "credits": 4
      },
      {
        "name": "History",
        "grade": "B+",
        "credits": 3
      }
    ],
    "student_name": "Jane Doe"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/report-card-generator
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `subjects` | array | yes | Subjects: { name, grade, credits? }. credits defaults to 3. Subjects with an empty name are skipped. |
| `student_name` | string | no | Student name. |
| `student_id` | string | no | Student ID. |
| `school_name` | string | no | School name (card heading). |
| `semester` | string | no | Semester or term. |
| `academic_year` | string | no | Academic year, e.g. 2025-2026. |
| `comments` | string | no | Teacher comments. |

Example arguments (verified):

```json
{
  "subjects": [
    {
      "name": "Math",
      "grade": "A",
      "credits": 4
    },
    {
      "name": "History",
      "grade": "B+",
      "credits": 3
    }
  ],
  "student_name": "Jane Doe"
}
```

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:report_card_generator`. Full MCP reference: https://findutils.com/mcp/report-card-generator/

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