Scope Creep Tracker

Productivity REST API MCP

Measure scope creep on a project and return the numbers a stakeholder report needs: original (baseline) effort, approved / pending / rejected change effort, total current scope, growth percent versus the baseline, approval rate, counts of change requests by type (feature, enhancement, clarification, bug, removal) and by status (pending, approved, rejected), the list of approved changes, and an executive-summary paragraph. Growth above 20% is flagged as high, as on the page.

This page documents the MCP tool findutils:scope_creep_tracker. See the REST reference →

Call it over MCP

Tool name findutils:scope_creep_tracker · 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": "scope_creep_tracker",
      "arguments": {
        "project_name": "Portal v2",
        "scope_items": [
          {
            "title": "Auth",
            "effort": 40
          }
        ],
        "change_requests": [
          {
            "title": "SSO",
            "effort_impact": 24,
            "type": "feature",
            "status": "approved"
          }
        ]
      }
    }
  }'

Input schema

Argument Type Required Description
project_name string no Project name used in the summary. Default "Untitled Project".
scope_items array yes Baseline scope items: { title, effort (hours) }. At least one is required.
change_requests array no Change requests: { title, effort_impact (hours), type (default "feature"), status (default "pending"), requested_by }.

Example arguments (verified)

{
  "project_name": "Portal v2",
  "scope_items": [
    {
      "title": "Auth",
      "effort": 40
    }
  ],
  "change_requests": [
    {
      "title": "SSO",
      "effort_impact": 24,
      "type": "feature",
      "status": "approved"
    }
  ]
}

Also a REST endpoint

The same tool answers plain HTTP at POST /api/tools/scope-creep-tracker/execute — no key, 60 requests/min.

Open the REST reference for Scope Creep Tracker →

More Productivity tools