# io.github.rog0x/task (npm · @rog0x/mcp-task-tools)

Todo, priority, estimation, burndown for AI agents

- Trust score: 64/100 (medium)
- Change this week: +18
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@rog0x/mcp-task-tools`: 64/100 (this document), [markdown](https://verifymcp.io/servers/rog0x-task/rog0x-mcp-task-tools.md), [page](https://verifymcp.io/servers/rog0x-task/rog0x-mcp-task-tools)

## Channel facts

- Registry: `npm`
- Package: `@rog0x/mcp-task-tools`
- Version: `1.0.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 133 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 557 tokens (~111/item across 5 items; 5 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add rog0x-task -- npx -y @rog0x/mcp-task-tools
```

### Codex

```bash
codex mcp add rog0x-task -- npx -y @rog0x/mcp-task-tools
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "rog0x-task": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@rog0x/mcp-task-tools"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add rog0x-task --command npx --arg -y --arg @rog0x/mcp-task-tools
```

### Hermes

```yaml
mcp_servers:
  rog0x-task:
    command: "npx"
    args: ["-y", "@rog0x/mcp-task-tools"]
```

### Other

```json
{
  "mcpServers": {
    "rog0x-task": {
      "command": "npx",
      "args": [
        "-y",
        "@rog0x/mcp-task-tools"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 64, +38)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Capabilities: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-08-01 (score 26, +5)

- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] MCP protocol: unverified → pass

### 2026-07-31 (score 21, −7)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 28, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (5)

### `todo_manager` (~176 tokens)

Manage an in-memory task list. Add, complete, update status, delete, and list tasks. Supports filtering by status, priority, and tags. Persistent within session.

Input parameters:

- `action` (string, required): Action to perform on the task list
- `description` (string): Task description (optional, for add)
- `id` (string): Task ID (required for complete, update_status, delete)
- `points` (number): Story points for the task (default: 1)
- `priority` (string): Task priority (for add or list filter)
- `status` (string): Task status (for update_status or list filter)
- `tag` (string): Filter by tag (for list)
- `tags` (array): Tags for the task (for add)
- `title` (string): Task title (required for add)

### `priority_sorter` (~112 tokens)

Sort and prioritize tasks using proven frameworks: Eisenhower matrix (urgent/important quadrants), RICE scoring (reach, impact, confidence, effort), or MoSCoW method (must/should/could/wont).

Input parameters:

- `method` (string, required): Prioritization framework to use
- `tasks` (array, required): Tasks to prioritize. Fields depend on method: eisenhower needs urgent/important booleans; rice needs reach/impact/confidence/effort numbers; moscow needs moscow category string.

### `time_estimator` (~106 tokens)

Estimate task duration using PERT methodology. Break a task into subtasks, provide optimistic/realistic/pessimistic estimates for each. Returns weighted expected time plus configurable buffer.

Input parameters:

- `buffer_percent` (number): Buffer percentage to add (default: 20)
- `subtasks` (array, required): Subtasks with time estimates
- `task` (string, required): Name of the overall task
- `unit` (string): Time unit: hours, days, weeks (default: hours)

### `standup_generator` (~63 tokens)

Generate a daily standup update from the current task list. Shows yesterday (recently completed), today (in progress), and blockers. Uses data from todo_manager.

Input parameters:

- `lookback_hours` (number): Hours to look back for completed tasks (default: 24)

### `burndown_calculator` (~100 tokens)

Calculate sprint burndown chart data. Given tasks with story points and sprint duration, computes ideal vs actual burndown, velocity metrics, and completion forecast.

Input parameters:

- `current_day` (number, required): Current day of the sprint (0-indexed)
- `sprint_duration_days` (number, required): Total sprint duration in days
- `sprint_name` (string): Name of the sprint
- `tasks` (array, required): Sprint tasks with points and completion data

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/rog0x-task/rog0x-mcp-task-tools#diagnostics

## Score history

- 2026-08-03: 64
- 2026-08-02: 64
- 2026-08-01: 26
- 2026-07-31: 21
- 2026-07-30: 28
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@rog0x/mcp-task-tools
- Socket report: https://socket.dev/npm/package/@rog0x/mcp-task-tools
- Repository: https://github.com/rog0x/mcp-task-tools
- Changelog RSS feed: https://verifymcp.io/servers/rog0x-task/rog0x-mcp-task-tools/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/rog0x-task/rog0x-mcp-task-tools/changelog.json
- HTML version of this page: https://verifymcp.io/servers/rog0x-task/rog0x-mcp-task-tools
