Skip to main content
Glama
Harsh-Mer623

Mitti MCP Server

by Harsh-Mer623

Actions List Actions

actions_list_actions

Lists actions from a Mitti account, with optional filters for status and priority, returning titles, descriptions, due dates, and assignees.

Instructions

List actions from the Mitti (formerly SafetyCulture) account. Supports server-side filtering by status (open, in_progress, completed, cant_do) and by an org-specific priority_id (UUID). Returns action ID, title, description, status, priority_id, due date, and assignees.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of actions to return (1–100, default 20).
statusNoFilter by status. One of: 'open', 'in_progress', 'completed', 'cant_do'.
priority_idNoFilter by a specific org-specific priority ID (UUID).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
totalNo
actionsNo
next_page_tokenNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A4/5.0
Behavior3/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 adds value by disclosing server-side filtering and enumerating returned fields, and read-only behavior is implied by 'List.' However, it does not mention pagination, ordering, or any limits beyond the schema's existing limit parameter.

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 two concise sentences with no filler. It front-loads the core purpose and account context, then efficiently covers filtering and return fields. Every sentence 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 low-complexity read-only list tool with an output schema and fully documented optional parameters, the description is largely complete. It provides return fields and filter semantics, though it omits pagination and ordering behavior; these are minor gaps given the output schema and simple parameter set.

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 status and priority_id, including allowed status values and the UUID type. The description mostly restates this information rather than adding new semantic meaning, though it does clarify that filtering is applied server-side.

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 opens with a specific verb and resource: 'List actions from the Mitti (formerly SafetyCulture) account.' It clearly differentiates this tool from siblings like actions_get_action (single action), actions_create_action, and actions_update_action_status by focusing on listing and filtering.

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 makes the use case clear: listing actions with optional server-side filtering by status or priority_id. It does not explicitly name alternatives or state when not to use this tool, but the listing/filtering context is unambiguous among the sibling set.

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