# Report Card Generator — MCP tool `findutils: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/mcp/report-card-generator/
- Same tool on the other surface: https://findutils.com/api/report-card-generator/

## Connect

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

Claude Desktop (`claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "findutils": {
      "url": "https://mcp.findutils.com/"
    }
  }
}
```

## Call the tool (verified example)

```bash
curl -X POST https://mcp.findutils.com/ \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "report_card_generator",
      "arguments": {
        "subjects": [
          {
            "name": "Math",
            "grade": "A",
            "credits": 4
          },
          {
            "name": "History",
            "grade": "B+",
            "credits": 3
          }
        ],
        "student_name": "Jane Doe"
      }
    }
  }'
```

## 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"
}
```

## Also a REST endpoint

```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
```

Full REST reference: https://findutils.com/api/report-card-generator/ · OpenAPI 3.1 spec: https://findutils.com/api/openapi.json

---
Full catalog: POST https://mcp.findutils.com/ with method `tools/list` · https://findutils.com/mcp/ · https://findutils.com/llms.txt
