Dev Request Prioritizer

Productivity REST API MCP

Prioritize development requests with the page's scoring frameworks and return them sorted by priority score, each with a value score and an effort/value quadrant (quick win, big bet, fill-in, money pit), plus a top recommendation and totals. Frameworks: "default" (weighted value ÷ √effort over Customer Impact, Revenue Impact, Strategic Value, Urgency, Risk), "rice", "ice", "wsjf", "moscow". Score each request 1-10 per dimension, keyed by dimension name; optional confidence weighting and a deadline boost (+20% within 7 days, +50% within 3, +100% overdue, capped by deadline_boost_multiplier).

This page documents the HTTP endpoint POST /api/tools/dev-request-prioritizer/execute. See the MCP reference →

Call it over REST

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

Execute — verified arguments

curl -X POST https://api.findutils.com/api/tools/dev-request-prioritizer/execute \
  -H "Content-Type: application/json" \
  -d '{
    "framework": "moscow",
    "today": "2026-01-10",
    "requests": [
      {
        "title": "SSO login",
        "scores": {
          "Priority Level": 10
        },
        "effort_days": 4,
        "deadline": "2026-01-12"
      }
    ]
  }'

Parameter schema for this endpoint

curl https://api.findutils.com/api/tools/dev-request-prioritizer

Interactive docs · OpenAPI 3.1 spec · All REST tools

Input schema

Argument Type Required Description
requests array yes Requests: { title, scores (object: dimension name → 1-10), effort_days (default 1), confidence (1-100, default 50), deadline (YYYY-MM-DD), status (default "new"), tags }.
framework string (default | rice | ice | wsjf | moscow) no Scoring framework. Default "default". Default: "default".
dimensions array no Custom dimensions: { name, weight (1-10), is_inverse }. Default: the chosen framework's preset dimensions.
use_confidence_in_scoring boolean no Multiply scores by confidence/100. Default false. Default: false.
use_deadline_boost boolean no Boost scores of requests with a near deadline. Default true. Default: true.
deadline_boost_days integer no Days before the deadline at which the boost starts. Default 7. Default: 7.
deadline_boost_multiplier number no Maximum boost percent. Default 50 (= +50%). Default: 50.
today string no Reference date for the deadline boost, YYYY-MM-DD. Default: today (UTC).

Example arguments (verified)

{
  "framework": "moscow",
  "today": "2026-01-10",
  "requests": [
    {
      "title": "SSO login",
      "scores": {
        "Priority Level": 10
      },
      "effort_days": 4,
      "deadline": "2026-01-12"
    }
  ]
}

Also an MCP tool

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

Connect once

claude mcp add findutils --transport http https://mcp.findutils.com/
Open the MCP reference for Dev Request Prioritizer →

More Productivity tools