Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

todoglow

NPM · TODOGLOW-MCP · SCANNED AUG 18

See what each of your coding agents is working on, and read or advance your todos.

Available components

+15 this week 69 Trust /100
Trust breakdown (6 categories)

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. How we score →

Supply Chain Security98
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • 30 of 96 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability77
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 778 tokens (~97/item across 8 items; 8 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

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

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · todoglow-mcp

# add to Claude Code
claude mcp add app-devglow-todoglow -- npx -y todoglow-mcp
# add to Codex CLI
codex mcp add app-devglow-todoglow -- npx -y todoglow-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "app-devglow-todoglow": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "todoglow-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add app-devglow-todoglow --command npx --arg -y --arg todoglow-mcp
# ~/.hermes/config.yaml
mcp_servers:
  app-devglow-todoglow:
    command: "npx"
    args: ["-y", "todoglow-mcp"]
// mcp.json
{
  "mcpServers": {
    "app-devglow-todoglow": {
      "command": "npx",
      "args": [
        "-y",
        "todoglow-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 12 Aug 26 +15
    • Malware scan: unverified → pass security
  • 11 Aug 26 54

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 18 Aug 2026 · Analysed npm/todoglow-mcp@1.1.2

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm
Dependencies 96 packages
Packages resolved 96
Stale 30
Tree resolution Complete
MCP tools · 8 exposed · ~605 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
advance_todo ~44

Advance a todo's status: pending → in_progress → completed. Use this when a todo is started or finished.

NameTypeReqDescription
idstringyesThe todo ID to advance

No output schema declared.

No examples provided.

get_active_todo ~30

Get the currently active (in_progress) todo — the one the user is focused on right now.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

get_threads ~25

List all agent threads in todoglow. Shows background work status from AI agents.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

list_receipt_todos ~127

List completed todos for a month as they appear in todoglow's receipt view, with their current receipt display title. Use this before set_receipt_titles to see what needs a public title. In the receipt's privacy mode, a todo is shown in the clear ONLY if it has a display title; everything else is masked.

NameTypeReqDescription
monthstringyesMonth to list, as YYYY-MM (e.g. 2026-07).
onlystringFilter: 'masked' = no display title yet, 'public' = has one. Default all.

No output schema declared.

No examples provided.

list_todos ~45

List all active todos in todoglow. Returns id, text, status, and timing info.

NameTypeReqDescription
statusstringFilter by status. Omit to list all.

No output schema declared.

No examples provided.

set_receipt_titles ~101

Set the receipt display title for one or more todos, in a single batch. A todo with a display title is shown in the clear when the receipt's privacy mode is on; everything else is masked. Pass title: null to clear one (back to masked). Only give a title to todos the user is willing to publish in a screenshot — when in doubt, leave it masked.

NameTypeReqDescription
entriesarrayyesBatch of id/title pairs to apply.

No output schema declared.

No examples provided.

set_topic ~132

Add a todo to the user's todoglow app. Only use this when the user explicitly asks to add a todo (e.g. 'todo 추가해줘', 'add this to my todos'). Do NOT call this automatically at conversation start — use update_thread instead. If called again in the same session with a pending todo, it will UPDATE the text instead of creating a new one.

NameTypeReqDescription
sourcestringSource identifier (e.g. "claude", "cursor"). Defaults to "mcp"
textstringyesThe overarching topic or goal (max 200 chars). Keep it concise.

No output schema declared.

No examples provided.

update_thread ~101

Register and update your work status in todoglow's AGENTS section. Call this at the START of every conversation with status 'working' and a short task description. Update status as work progresses (working → done/failed). Creates a new thread or updates an existing one by name.

NameTypeReqDescription
namestringyesThread name (e.g. task description). Used to find or create the thread.
statusstringyesCurrent status of the thread

No output schema declared.

No examples provided.