Report Card Generator

Education REST API MCP

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.

This page documents the MCP tool findutils:report_card_generator. See the REST reference →

Call it over MCP

Tool name findutils:report_card_generator · no API keys · 120 requests/min per IP

Claude Code

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

Claude Desktop — claude_desktop_config.json

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

Raw JSON-RPC (any MCP client) — verified example

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)

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

Also a REST endpoint

The same tool answers plain HTTP at POST /api/tools/report-card-generator/execute — no key, 60 requests/min.

Open the REST reference for Report Card Generator →

More Education tools