Skip to main content
Glama

Create person

twenty_create_person
Destructive

Create a new person (contact). All fields optional; firstName/lastName combine into name:{firstName,lastName}. Twenty REST: POST /rest/people.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNoCity.
xUrlNoX/Twitter URL (sent as xLink:{primaryLinkUrl}).
extraNoPassthrough object of additional/custom fields merged into the request body verbatim.
jobTitleNoJob title.
lastNameNoLast name (combined into name:{firstName,lastName}).
companyIdNoId of the company to link this person to.
firstNameNoFirst name (combined into name:{firstName,lastName}).
linkedinUrlNoLinkedIn URL (sent as linkedinLink:{primaryLinkUrl}).
primaryEmailNoPrimary email address (sent as emails:{primaryEmail}).
primaryPhoneNoPrimary phone number (sent as phones:{primaryPhoneNumber}).

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

The description adds behavioral context beyond the destructiveHint annotation by explaining that all fields are optional and that firstName/lastName are combined into a nested name object. It also discloses the underlying REST method and path. While it does not discuss error conditions or permissions, it provides useful transformation details.

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 short sentences front-loaded with the core purpose. It wastes no words and includes only essential information: the action, the field optionality, a key transformation, and the REST endpoint.

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 tool with 10 optional parameters and no output schema, the description is reasonably complete. It explains the endpoint and the name combining behavior. It does not describe what the creation response contains, but the absence of an output schema lowers that expectation. The schema covers the parameter details.

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%, with each parameter already described in detail, including mapping conventions like 'xUrl sent as xLink:{primaryLinkUrl}'. The description's note that all fields are optional is also implicit in the schema (no required parameters). Thus the description adds minimal new parameter-level meaning beyond the schema.

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 opens with 'Create a new person (contact)', a specific verb and resource that clearly distinguishes it from sibling tools like create_company or create_note. It also includes the REST endpoint, reinforcing the precise action.

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

Usage Guidelines4/5

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

The context is clear: this tool is for creating a person. Sibling tools target different entities (company, note, etc.), so the resource name makes the usage context obvious. However, it does not explicitly state when not to use it or mention alternatives, which would warrant a 5.

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

A3.7/5.0
Disambiguation5/5

Each tool follows a clear action-entity pattern, so there is no overlap; even the metadata listing is distinct from record operations. No two tools could be confused.

Naming Consistency5/5

All tools use the twenty_<verb>_<entity> convention with verbs create/get/list/update, in lowercase snake_case. Naming is perfectly consistent across the set.

Tool Count4/5

20 tools is slightly above the typical well-scoped range but justified by five core entities each needing create/get/list/update. However, the count feels a bit heavy, especially without delete tools.

Completeness3/5

The server covers create, read, and list for all entities, and update for most, but lacks delete operations entirely and does not support updating notes. These are notable gaps in full lifecycle management.