Skip to main content
Glama
homeassistant-ai

Home Assistant MCP Server

Official

Remove Todo Item

ha_remove_todo_item
DestructiveIdempotent

Permanently delete an item from a Home Assistant todo list by supplying the item's UID or exact name. Use this to remove tasks like 'Buy milk' or 'Call mom'.

Instructions

Remove an item from a Home Assistant todo list.

Permanently deletes an item from the specified todo list.

IDENTIFYING ITEMS:

  • Use the item's UID (from ha_get_todo)

  • Or use the exact item summary/name text

EXAMPLES:

  • Remove by name: ha_remove_todo_item("todo.shopping_list", "Buy milk")

  • Remove by UID: ha_remove_todo_item("todo.shopping_list", "abc123-uid")

USE CASES:

  • "Remove milk from my shopping list"

  • "Delete the eggs item"

  • "Clear 'call mom' from my todo"

WARNING: This permanently removes the item. To mark as completed instead, use ha_set_todo_item() with status="completed".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemYesItem to remove - can be the item UID or the exact item summary/name
entity_idYesTodo list entity ID (e.g., 'todo.shopping_list')

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Behavior4/5

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

Annotations already indicate destructiveHint=true and idempotentHint=true. The description reinforces the permanent deletion with a warning. However, it does not explain the idempotent behavior (e.g., removing a non-existent item may not error), though the annotation covers it.

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?

The description is well-structured with clear headings (IDENTIFYING ITEMS, EXAMPLES, USE CASES, WARNING), is front-loaded with the core purpose, and every sentence adds meaningful information without redundancy.

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 the tool's complexity (simple removal operation with two parameters), the description covers identification methods, examples, use cases, and a warning about permanence. Since an output schema exists, there's no need to detail return values.

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 description coverage is 100%, so the schema already documents both parameters. The description adds value by providing examples of how to use the 'item' parameter with UID or exact name, and 'entity_id' with a concrete example.

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 action ('Remove an item'), the resource ('Home Assistant todo list'), and specifies it is a permanent deletion. It distinguishes from the sibling 'ha_set_todo_item' by mentioning the alternative for marking as completed.

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 provides explicit usage guidance, including how to identify items (by UID or exact name) and specific use cases. It clearly directs users to use 'ha_set_todo_item' for marking items as completed instead of deleting.

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/homeassistant-ai/ha-mcp'

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