Skip to main content
Glama
AnderRahe

Quaderno MCP Server

by AnderRahe

Create Contact

create_contact

Add a customer or company contact in Quaderno to reference when creating invoices.

Instructions

Create a new contact (customer or company) in Quaderno. The contact can later be referenced when creating invoices.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNoCity
kindYesWhether the contact is a person or a company
emailNoEmail address
regionNoState or region
tax_idNoTax identification number (VAT, NIF, etc.)
countryNoISO 3166-1 alpha-2 country code
phone_1NoPhone number
languageNoTwo-letter language code for invoices (e.g. en, es, de)
last_nameNoLast name
first_nameYesFirst name (or company name if kind=company)
postal_codeNoPostal code
street_line_1NoStreet address line 1
street_line_2NoStreet address line 2

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/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. It does not state permission requirements, what happens on duplicate email/tax_id, whether tax_id is validated, or whether creation is idempotent — significant gaps for a mutation tool whose sibling validate_tax_id exists.

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?

Two short sentences, front-loaded with the core action and scope, with zero filler. Every clause contributes.

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 13-parameter mutation tool with no output schema and no annotations, the description is adequate but thin. It conveys what is created and its downstream use, but omits permissions, failure modes, and any hint of the returned identifier an agent would need to reference the contact later.

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 every parameter (including the kind enum and the first_name-as-company-name nuance) is already documented in the schema. The description adds no parameter-level meaning beyond that, so the baseline of 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?

Names a specific verb and resource ('Create a new contact') and clarifies the scope with '(customer or company)'. It does not explicitly differentiate itself from siblings like create_invoice, though the mention that contacts are referenced when creating invoices gives a loose relational cue.

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 second sentence implies the tool is used when you need a contact to later attach to invoices, which gives implied context. However, there is no explicit when-to-use/when-not guidance, no prerequisites, and no named alternatives among siblings.

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