Skip to main content
Glama
yugmarwaha

Todoist Weekly Review MCP

by yugmarwaha

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.0

  • Disambiguation5/5

    Each tool has a distinct purpose: get_overdue_tasks reads overdue items, get_projects lists projects, apply_changes writes changes. No overlap, clear boundaries.

    Naming Consistency5/5

    All names follow a consistent verb_noun pattern in snake_case: get_overdue_tasks, get_projects, apply_changes. The verbs accurately describe the action.

    Tool Count5/5

    Three tools are well-scoped for weekly review: data retrieval (overdue tasks, projects) and change execution. No extraneous or missing tools.

    Completeness5/5

    The set covers the full weekly review workflow: get overdue tasks, see available projects, and apply all required actions (reschedule, priority, move, complete, etc.). No obvious gaps.

  • Average 4.8/5 across 3 of 3 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 20 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior4/5

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

    No annotations provided, so description must carry full burden. It discloses pagination to completion and the return format. It does not explicitly state it's safe/idempotent, but the read nature is clear. Minor omission prevents a 5.

    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?

    Three concise sentences, front-loaded with the core function. Every sentence adds value: returns all projects, use case, reminder about apply_changes. No waste.

    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?

    Given no parameters, no output schema, and a simple return, the description is complete. It explains the purpose, usage scenario, and relationship to sibling tools. Agent has all necessary info.

    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?

    No parameters exist, and schema coverage is 100% (empty). Baseline for 0 parameters is 4. Description adds no parameter info but doesn't need to. It adds context about what the tool does.

    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 precisely the action: 'Returns every Todoist project as { id, name }'. It specifies the verb (returns) and resource (projects), and distinguishes from sibling tools by noting that apply_changes handles automatic creation.

    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?

    Explicitly states when to use: 'to check whether a Someday/Maybe retirement project already exists'. Also clarifies when NOT to create a project manually because apply_changes' move_to_project action finds-or-creates. Provides clear context and alternatives.

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

  • Behavior5/5

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

    With no annotations, the description fully discloses behavioral traits: validation rejects the entire batch if any item is malformed, execution is per-item with independent success/failure reporting, and no delete action exists. This covers key safety and execution model details.

    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 long but well-structured with clear sections for usage guidelines, action details, and validation behavior. Every sentence adds value given the complexity of six action types. Slightly verbose but justified; could be trimmed slightly without losing meaning.

    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?

    The description covers input comprehensively and mentions per-item result reporting, but does not provide output schema or detailed error response format. For a mutation tool with no output schema, this is fairly complete; minor gap on output specifics.

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

    Parameters5/5

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

    Since schema description coverage is 0%, the description adds extensive meaning by detailing each action type (reschedule, set_priority, etc.), their required params, and nuances like priority mapping (1-4, 4 highest) and project name matching (case-insensitive, auto-create). This is far beyond the raw schema.

    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 tool executes an explicit list of approved changes against Todoist, which is a specific verb+resource. It distinguishes itself from sibling read-only tools (get_overdue_tasks, get_projects) by being a mutation tool. The phrasing 'ONLY call this with changes the user has explicitly approved' reinforces its unique purpose.

    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 first paragraph provides explicit instructions on when to use (only with explicit user approval), what not to do (never infer, batch, or add unconfirmed changes), and what actions are missing (no delete, no split). This gives clear guidance on appropriate usage and distinguishes from alternatives.

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

  • Behavior5/5

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

    No annotations provided, but the description takes full responsibility, stating 'This tool is READ-ONLY and writes nothing.' It also details output fields, including the conditional timesRescheduled, and explains priority inversion without contradiction.

    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 detailed but well-structured with clear sections. Each sentence adds value; however, it could be slightly more concise without losing meaning.

    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?

    No output schema, but the description fully documents the output format, field meanings, and interpretation logic (priority inversion, reschedule vs retire decision). All necessary context is provided for a zero-parameter, output-only tool.

    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?

    No parameters (input schema empty), so baseline is 4. The description adds no param info, but no param info is needed; the context is fully covered elsewhere.

    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 specifies that the tool returns overdue Todoist tasks as weekly-review candidates, listing exact fields. It is distinct from sibling tools like apply_changes and get_projects, which have different purposes.

    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?

    Explicitly states when to use (weekly review), provides step-by-step post-call workflow (propose fixes per task, get user approval before calling apply_changes), and includes signal-reading guidance for deciding between rescheduling and retiring tasks.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

todoist-weekly-review-mcp MCP server

Copy to your README.md:

Score Badge

todoist-weekly-review-mcp MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/yugmarwaha/todoist-weekly-review-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server