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 MCP tool findutils:dev_request_prioritizer. See the REST reference →

Call it over MCP

Tool name findutils:dev_request_prioritizer · 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": "dev_request_prioritizer",
      "arguments": {
        "framework": "moscow",
        "today": "2026-01-10",
        "requests": [
          {
            "title": "SSO login",
            "scores": {
              "Priority Level": 10
            },
            "effort_days": 4,
            "deadline": "2026-01-12"
          }
        ]
      }
    }
  }'

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 a REST endpoint

The same tool answers plain HTTP at POST /api/tools/dev-request-prioritizer/execute — no key, 60 requests/min.

Open the REST reference for Dev Request Prioritizer →

More Productivity tools