# Dev Request Prioritizer — MCP tool `findutils:dev_request_prioritizer`

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).

- Category: productivity
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/dev-request-prioritizer/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/mcp/dev-request-prioritizer/
- Same tool on the other surface: https://findutils.com/api/dev-request-prioritizer/

## Connect

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

Claude Desktop (`claude_desktop_config.json`):

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

## Call the tool (verified example)

```bash
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):

```json
{
  "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

```bash
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
curl https://api.findutils.com/api/tools/dev-request-prioritizer
```

Full REST reference: https://findutils.com/api/dev-request-prioritizer/ · OpenAPI 3.1 spec: https://findutils.com/api/openapi.json

---
Full catalog: POST https://mcp.findutils.com/ with method `tools/list` · https://findutils.com/mcp/ · https://findutils.com/llms.txt
