# Scope Creep Tracker — REST API endpoint `scope-creep-tracker`

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.

- 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/scope-creep-tracker/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/scope-creep-tracker/
- Same tool on the other surface: https://findutils.com/mcp/scope-creep-tracker/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/scope-creep-tracker/execute \
  -H "Content-Type: application/json" \
  -d '{
    "project_name": "Portal v2",
    "scope_items": [
      {
        "title": "Auth",
        "effort": 40
      }
    ],
    "change_requests": [
      {
        "title": "SSO",
        "effort_impact": 24,
        "type": "feature",
        "status": "approved"
      }
    ]
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/scope-creep-tracker
```

## 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):

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

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

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

Then ask the client to call `findutils:scope_creep_tracker`. Full MCP reference: https://findutils.com/mcp/scope-creep-tracker/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
