Skip to main content
Glama

Preview a formation order

preview_order
Read-only

Build an exact order summary WITHOUT submitting anything. No side effects. Validates the details, prices the order, and returns a confirmation summary. ALWAYS call this and show the user the returned summary before calling submit_order.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesThe customer's email. Required — this is how they are contacted.
phoneNoOptional phone number.
stateYesTwo-letter state code or full state name, e.g. "WY" or "Wyoming". All 50 states + DC.
fullNameYesThe customer's full name.
entityTypeYesEntity type, e.g. "LLC", "S-Corp", "C-Corp", or "Not sure" if the user hasn't decided.
descriptionNoOne or two sentences on what the business does. Optional — the user may skip it.
businessNameYesProposed company name. Does not need to be final — a specialist verifies availability.

TDQS

A4.4/5.0
Behavior4/5

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

The annotation readOnlyHint=true already establishes a safe read operation. The description builds on this by explaining the tool validates details, prices the order, and returns a confirmation summary, which goes beyond the annotation. It does not disclose error handling or rate limits, but for a read-only preview tool, the added behavioral context is valuable and consistent.

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 three sentences, front-loaded with the core purpose, immediately noting no submission, and ending with a clear mandatory usage directive. Every sentence earns its place without redundancy or fluff.

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?

The tool is relatively simple, the schema is thorough, and the description explains the return (a confirmation summary) and the required usage pattern. While no output schema exists, the description provides enough context for an agent to know when to call it and what to expect, though the exact structure of the summary is unspecified.

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?

The input schema covers all 7 parameters with detailed descriptions, including accepted formats (e.g., state as 'WY' or 'Wyoming') and nuances (e.g., entityType includes 'Not sure'). The tool description does not add parameter-level detail, but with 100% schema coverage, 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?

The description clearly states the tool builds an exact order summary without submitting, using specific verbs like 'validates', 'prices', and 'returns'. It explicitly contrasts with submit_order by saying 'WITHOUT submitting anything', making the tool's purpose unambiguous and distinct from its primary sibling.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides an explicit directive: 'ALWAYS call this and show the user the returned summary before calling submit_order'. This offers precise when-to-use guidance relative to the main alternative, and the 'No side effects' statement reinforces safe use cases.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation4/5

Most tools have clearly distinct purposes, but get_llc_fees and compare_llc_costs both return cost data, which could cause mis-selection for single-state fee queries. Similarly, check_llc_name and list_filing_states both touch on name-checking capabilities, though one actually performs a check and the other lists support.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (check_, compare_, get_, list_, preview_, submit_). The verbs are varied but the structure is uniform and readable.

Tool Count5/5

8 tools is well-scoped for the LLC research-to-order workflow. Each tool earns its place, covering name checks, cost comparisons, fee details, deadlines, filing capabilities, and the order preview/submit flow.

Completeness4/5

The toolset covers the entire pre-sales and order placement journey: research (name, fees, costs, deadlines, options, filing states) and submission (preview, submit). Minor gap: there is no post-submission order status tool, but this may be outside the server's purpose.

Resources