Skip to main content
Glama

Server Details

AI-driven daily-focus todo app on your phone (max 3/day). View & add todos from any MCP client.

Ownership verified
Status
Healthy
Uptime
49.4% over 38 days
OAuth
Works in Glama
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

A4.4/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a distinct purpose: add_todo creates a task, list_reserve shows the upcoming queue, and list_todos shows today's list. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (add_todo, list_reserve, list_todos). The 'list' prefix for both view operations is predictable and clear.

Tool Count5/5

Three tools are appropriate for a lightweight todo manager. The set is small but well-scoped, each tool serves a necessary function without bloat.

Completeness3/5

The surface covers core create and read operations, but lacks update and delete capabilities. An agent cannot modify or remove tasks, which is a notable gap for a task management domain.

Available Tools

3 tools
add_todoAdd a todoAInspect

Add a task to Signal not Noise — it appears in the user's app. Call this when the user asks to add, capture or remember a task. Destination 'auto' (default) puts it in today's list if there's a free slot, otherwise at the end of the reserve queue; 'today' fails when the day is full; 'reserve' always queues it for an upcoming day. Keep titles short and actionable. Only add completion criteria when the task genuinely has sub-steps.

ParametersJSON Schema
NameRequiredDescriptionDefault
notesNoOptional extra context shown under the title
titleYesShort, actionable task title
criteriaNoOptional completion criteria (sub-steps ticked off one by one)
destinationNoWhere to add it (default: auto)
recurEveryDaysNoRepeat interval in days (1 = daily, 7 = weekly). After completion the item returns to the top of the reserve. Omit for one-off tasks.

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses the effect on the user's app, the nuanced destination logic (auto fallback, today failure, reserve always queues), and recurrence behavior (returns to top of reserve after completion). It doesn't explicitly mention side effects like list updates or error messages, but the disclosed behavior is thorough for a creation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is about five sentences, each contributing useful guidance. It is front-loaded with the core purpose and invocation trigger, then details destination options and best practices. No filler or redundancy; it is appropriately sized for a tool with five parameters and nuanced behavior.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given there is no output schema, the description focuses on input behavior, which is appropriate for a creation tool. It covers all destination cases, recurrence, and parameter guidance. It doesn't mention return values, but for a side-effect operation that is not critical. The sibling tools are clearly different, and the description gives enough to use the tool correctly in most scenarios.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% (all parameters have descriptions), so baseline is 3. The description adds value beyond the schema: it explains the destination enum values' semantics, advises keeping titles 'short and actionable', and clarifies when to include criteria ('only add completion criteria when the task genuinely has sub-steps'). It also elaborates on recurEveryDays behavior. This extra context lifts the score above baseline, though not to 5 since notes and some edge cases remain schema-only.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb and resource: 'Add a task to Signal not Noise' and immediately explains the outcome ('it appears in the user's app'). It also specifies when to invoke it ('Call this when the user asks to add, capture or remember a task'), which differentiates it from the list-oriented siblings (list_reserve, list_todos).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit invocation triggers ('when the user asks to add, capture or remember a task') and provides detailed guidance on destination behavior ('auto' vs 'today' vs 'reserve') including the failure condition for 'today' when full. It also instructs on title style and when to include completion criteria, offering clear decision rules for parameter use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_reserveList the reserve queueAInspect

View the reserve queue: upcoming items, in priority order, that top the day back up to the daily limit when it rolls over. Use this to see what's planned beyond today.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the behavioral burden. It does so by using the non-mutating verb 'View', explaining order ('priority order'), and giving temporal context ('when the daily limit rolls over'). For a zero-parameter list operation, this is sufficient behavioral disclosure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the action and resource, and each sentence contributes meaning: one defines what the queue is, and the other gives the practical use case. There is no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple zero-parameter list tool, the description provides enough context to invoke it correctly and interpret its result: reserve items, priority ordering, and planned-beyond-today scope. It leaves some conceptual detail about the daily-limit rollover mechanism implicit but does not create a calling obstacle.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so the baseline is 4. No parameter-specific semantics are needed, and the description appropriately avoids inventing any.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies a specific verb-resource pair: view the reserve queue. It also distinguishes this from list_todos by defining the queue's unique role (upcoming items in priority order that top the day back up to the daily limit).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives a clear use case: 'Use this to see what's planned beyond today.' This is practical when-to-use guidance, but it does not explicitly name sibling alternatives or state when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_todosList today's todosAInspect

View today's focus list in Signal not Noise: the day's items (max is a user setting, default 3), each with completion state, progress and criteria. Reading this may trigger the app's daily rollover, exactly like opening the app.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It does this well by revealing the non-obvious side effect: reading the list may trigger the daily rollover just like opening the app. It could add more detail about what the rollover changes or the exact response shape, but the most important behavioral trait is covered.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two compact sentences with no filler. The first sentence front-loads the verb and resource and packs in the list contents and default limit; the second earns its place by disclosing the rollover side effect.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a parameterless tool with no output schema, the description is complete: it explains the list scope, default and configurable max, item fields, and a caveat about triggering rollover. An agent has enough context to call the tool and interpret the result.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters and schema description coverage is 100%, so the baseline is 4. The description adds useful value by enumerating what the returned items contain, even though no parameter semantics are needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('View') and resource ('today's focus list'), and goes on to specify what the list contains (completion state, progress, criteria). It is clearly distinct from add_todo and list_reserve, which are about adding and reserving rather than viewing the day's items.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use the tool: when the agent needs today's focus list. It does not explicitly mention alternatives or exclusion conditions, such as when list_reserve would be more appropriate, so it stays at minimum viable rather than providing strong routing guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 3 tool updates
    • First observedadd_todo
    • First observedlist_reserve
    • First observedlist_todos

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    A simple, powerful Todo list manager for Claude Desktop and other MCP-compatible AI assistants. Organize your tasks across different projects with priorities and never lose track of what needs to be done!
    4 npm
    2
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables managing personal to-do items directly from ChatGPT or Claude chats, with due dates, tags, and preparation start dates computed from a configurable lead time so scheduled tasks can surface what needs work now. Exposes MCP tools for adding, listing, updating, and completing todos, plus an upcoming summary grouped by overdue, start-now, later, and no-due items, backed by SQLite with OAuth 2.1 or bearer-token auth and optional gbrain page sync.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources