Skip to main content
Glama

create_list_item

Add a new item to a Slack list by specifying the list ID and item value. Optionally include a status to mark it as incomplete or complete.

Instructions

Add a new item to a Slack List. Requires lists:write scope.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
valueYesItem text/value
statusNoOptional status (e.g., 'incomplete', 'complete')
list_idYesList ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.8

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description carries the full behavioral burden. It clearly states the required OAuth scope, which is useful, and the mutation intent. However, it does not mention error behavior, duplicate handling, or what happens on success, leaving some behavioral gaps.

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 concise sentences with no filler. The core action is front-loaded and the required scope follows immediately. Every word earns its place.

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 create tool, the description plus fully-documented schema provides enough for correct invocation. The requirement scope is disclosed and the action is unambiguous. Minor missing context like return values is not critical here.

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 already documents value, status, and list_id. The description adds no parameter-level semantics beyond the schema, so the baseline of 3 is appropriate.

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?

States exactly what the tool does: 'Add a new item to a Slack List.' The verb is specific and the resource is clear, distinguishing it from sibling tools like update_list_item, delete_list_item, and list_list_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 usage by saying 'Add a new item' and mentions the required lists:write scope, but it does not explicitly say when to choose this tool over related items such as update_list_item or delete_list_item. Usage guidance is adequate but not explicit.

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