Grade Calculator

Education REST API MCP

Calculate a weighted course grade from categories (homework, quizzes, exams) with assignment scores, the letter grade (A to F), and the score needed on the remaining weight to reach a target grade. Categories with no scored assignments count as remaining weight.

This page documents the HTTP endpoint POST /api/tools/grade-calculator/execute. See the MCP reference →

Call it over REST

POST https://api.findutils.com/api/tools/grade-calculator/execute · no API keys · 60 requests/min per IP

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/grade-calculator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "categories": [
      {
        "name": "Homework",
        "weight": 40,
        "assignments": [
          {
            "score": 90
          }
        ]
      },
      {
        "name": "Final",
        "weight": 60,
        "assignments": []
      }
    ],
    "target_grade": 90
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/grade-calculator

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
categories array yes Grade categories. Each item: { name?: string, weight: number (percent of the final grade), assignments: [{ name?: string, score: number, max_score?: number (default 100) }] }.
target_grade number no Target final grade in percent. Default 90. Default: 90.

Example arguments (verified)

{
  "categories": [
    {
      "name": "Homework",
      "weight": 40,
      "assignments": [
        {
          "score": 90
        }
      ]
    },
    {
      "name": "Final",
      "weight": 60,
      "assignments": []
    }
  ],
  "target_grade": 90
}

Also an MCP tool

Claude, Cursor, and any MCP client can call this tool as findutils:grade_calculator after one connect command.

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Grade Calculator →

More Education tools