Skip to main content
Glama

generate_business_card

Business Card Generator — Generate a printable business card (PDF or PNG) from name, job title, company, and contact details. [category: generate]

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailNoPrinted verbatim in the contact block — no validation, no mailto link; empty = line omitted.
phoneNoPrinted verbatim in the contact block; empty = line omitted. No formatting applied.
formatNo'pdf' (default) or 'png' (300 DPI Ghostscript raster, 1050x600). Any other value silently returns the PDF.pdf
companyNoPrinted under the name; omitted entirely when empty. Latin-1 only — CJK/emoji glyphs render as '.'.
websiteNoPrinted exactly as sent — strip 'https://' yourself if unwanted; empty = line omitted.
fullNameYesFull name printed on the card. Field name is 'fullName' — not 'name'.
jobTitleNoJob title. Field name is 'jobTitle' — not 'title'.
templateNoCard layout.modern
primaryColorNoHex color WITHOUT the leading '#'.1a1a2e
secondaryColorNoHex color WITHOUT the leading '#'.E05535

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • changedInput schema / properties / template / description
      Previous value: -"Card template, e.g. modern or classic."New value: +"Card layout."
    • addedInput schema / properties / template / enum
      Added value: +[
      +  "modern",
      +  "classic",
      +  "minimal",
      +  "creative",
      +  "corporate",
      +  "elegant"
      +]
  2. First observed

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false, destructiveHint=false, and openWorldHint=false, so the safety profile is covered. The description adds the output artifact types (PDF/PNG) but does not disclose the delivery mechanism — whether the file is written to disk, returned inline, or where — which is the one behavior an agent would most want here, especially with readOnlyHint=false and no output schema.

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 front-loaded sentence that states purpose, output, and inputs with no filler; the trailing [category: generate] tag is minor metadata noise but not wasteful. Very tight, though arguably minimal for a 10-parameter tool.

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 generator with 1 required parameter out of 10, full schema coverage, and no output schema, the description covers the essentials of what is produced. The main omission is how the generated artifact is returned or saved, which the absence of an output schema leaves 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?

Schema description coverage is 100%, so the schema already documents all 10 parameters in detail, including enum values, defaults, Latin-1 limitation, and hex-color formatting. The description only echoes the top-level fields (name, job title, company, contact details) without adding syntax or format meaning beyond the schema, so the baseline of 3 applies.

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 gives a specific verb (Generate), a concrete resource (printable business card), the output formats (PDF or PNG), and the key inputs (name, job title, company, contact details). No sibling tool produces a business card, so the resource alone disambiguates it from generate_qr_code, generate_barcode, generate_invoice, etc.

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?

There is no when-to-use or when-not-to-use guidance and no named alternative. The reader must infer that it is used when a business card artifact is desired; nothing explains when another generate_* tool would be preferable.

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.

Resources