Skip to main content
Glama
placraftic

@placraftic/mcp-server

by placraftic

list_customers

Retrieve studio customer records with lifetime order counts and total spend, and search by name, phone, or email for targeted lookups.

Instructions

List studio customer directory with lifetime order counts, total spent, and search by name or phone

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPagination page number (default: 1)
limitNoMaximum number of customers to return (default: 20, max: 100)
searchNoSearch customers by first name, last name, phone number, or email

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. 'List' implies a safe read, but the description says nothing about pagination behavior, sort order, rate limits, or result size caps beyond what the schema already declares.

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?

A single dense sentence with no filler; the core resource and returned data are front-loaded. It could be slightly tighter, but nothing is wasted.

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?

For a read-only list tool with no annotations and no output schema, the description usefully previews returned fields (order counts, total spent) and the search dimension, which is adequate. It omits any framing of pagination defaults and how it relates to the customer-profile sibling, leaving minor 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 already documents page, limit, and search fields in detail. The description's 'search by name or phone' is actually narrower than the schema (which also covers email), adding no new meaning. Baseline 3 applies.

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?

Specific verb 'List' plus resource 'studio customer directory' plus the returned fields (lifetime order counts, total spent) and search capability. Clear what it does, but it does not distinguish itself from the sibling get_customer_profile, which an agent could confuse it with.

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 never states when to use this listing tool versus the per-customer get_customer_profile, nor any prerequisites. Usage is only implied by the verb 'List' and no alternatives or exclusions are named.

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