Skip to main content
Glama
spruikco

send16-mcp

by spruikco

list_contacts

Retrieve and filter contacts by subscription status and tag ID, with pagination support for managing large contact lists.

Instructions

List all contacts with optional filtering by subscription status and tag. Supports pagination.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number
tagIdNoFilter by tag ID
apiKeyNoSend16 API key (overrides SEND16_API_KEY env var)
pageSizeNoResults per page (max 100)
subscribedNoFilter by subscription status

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.7

TDQS

A4.1/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It discloses pagination support and the ability to filter, implying a read-only operation. However, it does not explicitly state if it is destructive or what return format to expect.

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 extremely concise with two sentences, front-loading the main purpose and then adding key features. No extraneous information or repetition.

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?

Considering there is no output schema and no annotations, the description covers basic functionality but lacks details on authentication (apiKey), default ordering, and return format. Additionally, it does not clarify when to use this tool over siblings like search_contacts.

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 coverage is 100%, so baseline is 3. The description adds value by grouping parameters into functional categories ('filtering by subscription status and tag' maps to subscribed and tagId; 'pagination' maps to page and pageSize). This enhances understanding beyond the schema alone.

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 lists all contacts with optional filtering, which directly indicates the verb and resource. It distinguishes from siblings like search_contacts by focusing on listing all with simple filters.

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 mentions optional filtering and pagination but does not provide explicit guidance on when to use this tool versus alternatives such as search_contacts. No exclusion criteria or context for when not to use it is given.

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