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 HTTP endpoint POST /api/tools/scope-creep-tracker/execute. See the MCP reference →
Call it over REST
POST https://api.findutils.com/api/tools/scope-creep-tracker/execute · no API keys · 60 requests/min per IP
Execute — verified arguments
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 for this endpoint
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)
{
"project_name": "Portal v2",
"scope_items": [
{
"title": "Auth",
"effort": 40
}
],
"change_requests": [
{
"title": "SSO",
"effort_impact": 24,
"type": "feature",
"status": "approved"
}
]
} Also an MCP tool
Claude, Cursor, and any MCP client can call this tool as
findutils:scope_creep_tracker 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.
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
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
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.
Tech Debt Register
Analyze a technical debt register and return the stakeholder numbers: active vs resolved counts, total hours to fix, weekly "interest" cost