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 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/ More Productivity tools
Client Status Report Generator
Generate a client-facing project status report in Markdown and return it with its headline counts.
Csv To Ics
Turn a CSV of events into an iCalendar (.ics) file that Google Calendar, Apple Calendar and Outlook import.
Ics To Csv
Convert an iCalendar (.ics) export from Google Calendar, Apple Calendar or Outlook into CSV, one row per event.
Keyboard Shortcut Finder
Return keyboard shortcuts (Mac and Windows keys) that match a search query, app, or category.
Retro Meeting
Turn a finished sprint-retrospective board into shareable results: a Markdown summary grouped by category with items sorted by votes, a CSV
Scope Creep Tracker
Measure scope creep on a project and return the numbers a stakeholder report needs: original (baseline) effort, approved / pending / rejecte
Social Media Calendar Generator
Turn a list of planned social media posts into a content calendar: a CSV export (Date, Time, Platform, Content Type, Title, Description, Has
Sprint Capacity Calculator
Calculate a team's realistic sprint capacity in hours and story points.