Skip to main content
Glama
gtoshinakano

Firestore Todo List MCP Server

by gtoshinakano

Update todo/task

update_todo

Modify existing todo items in Firestore by updating fields like title, details, completion status, due dates, or roles to keep task information current.

Instructions

Update fields of an existing todo item (text, completed, dueDate, role).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesRequired. ID of the todo to update
titleNoNew title (if updating)
detailsNoNew details (if updating)
completedNoNew completed status (if updating)
archivedNoNew archived status (if updating)
dueDateNoNew due date (if updating)
completionNotesNoCompletion notes (if provided). Only update when marking as completed.
roleNoNew role (if updating). Cannot be empty string
classificationNoMust be provided at the time of task creation based on the nature of the taskimportant

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
todoYesThe affected todo item
Behavior2/5

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

With no annotations provided, the description carries full burden but only states the basic action of updating fields. It doesn't disclose behavioral traits such as whether updates are idempotent, what permissions are required, how errors are handled, or the impact on existing data. The mention of 'existing todo item' implies mutation but lacks depth.

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 a single, efficient sentence that front-loads the core action. It could be slightly more structured by grouping fields or adding brief context, but it avoids redundancy and wastes no words.

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

Completeness3/5

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

Given the tool's complexity (9 parameters, mutation operation) and no annotations, the description is incomplete—it lacks behavioral context, usage guidelines, and error handling. However, the presence of an output schema reduces the need to explain return values, and the schema covers parameters well, making it minimally adequate but with clear gaps.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema fully documents all 9 parameters. The description adds minimal value by listing some updatable fields (text, completed, dueDate, role) but omits others like archived, completionNotes, and classification, and doesn't clarify semantics beyond what the schema provides.

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

Purpose4/5

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

The description clearly states the action ('Update fields') and resource ('existing todo item'), and lists specific fields that can be updated. It distinguishes from siblings like create_todo (new items) and delete_todo (removal), though not explicitly. However, it doesn't fully differentiate from complete_todo which might overlap with updating the completed field.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like complete_todo or create_todo. It mentions updating fields but doesn't specify prerequisites (e.g., requires an existing todo ID) or contextual cues (e.g., use for partial updates vs. complete_todo for marking as done).

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

Install Server

Other Tools

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/gtoshinakano/firebase-todo-mcp'

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