Skip to main content
Glama
natejonesbaby

PostGrid MCP Server

postgrid_create_contact

Create a mailing contact with address details, enabling reuse as recipient or sender for letters and checks.

Instructions

Create a contact in PostGrid with a mailing address. Contacts can be used as recipients or senders for letters and checks.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNoCity
emailNoEmail address
lastNameNoContact last name
firstNameNoContact first name
companyNameNoCompany or organization name
countryCodeNoTwo-letter country code (default: 'US')
descriptionNoInternal description/notes
phoneNumberNoPhone number
postalOrZipNoZIP or postal code
addressLine1YesStreet address line 1
addressLine2NoStreet address line 2 (apt, suite, etc.)
provinceOrStateNoState or province code (e.g., 'TN', 'CA')

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/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 burden of behavioral disclosure. It only states that a contact is created; it does not mention what the response contains, whether address verification occurs, whether duplicates are allowed, or any side effects. The schema confirms addressLine1 is required, but the description adds minimal behavioral context beyond the verb itself.

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 short sentences with no filler. The core action is front-loaded, and the second sentence adds genuinely useful context about how contacts are used. Every word earns its place.

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 flat 12-parameter create tool with no output schema and no annotations, the description is somewhat thin. It does not state what happens after creation (e.g., whether the returned contact ID should be used as recipientId/senderId elsewhere), nor does it clarify any validation behavior. It is sufficient for basic selection but not fully complete for reliable invocation and follow-up.

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 all 12 parameters are already documented in the input schema. The description adds only a general notion that the contact needs a mailing address, which matches addressLine1/addressLine2/city/provinceOrState/postalOrZip/countryCode. With full schema coverage, this is an adequate but baseline contribution.

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 states a specific action ('Create'), a specific resource ('a contact in PostGrid'), and the key requirement ('with a mailing address'). It also clarifies the downstream purpose of contacts ('recipients or senders for letters and checks'), which distinguishes it from letter/cheque creation tools.

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 when to use the tool: when you need a contact to act as a recipient or sender for letters or checks. However, it does not explicitly state when to prefer this over update_contact, list_contacts, or other contact-related siblings, nor does it mention prerequisites or alternatives.

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