Skip to main content
Glama

Create ticket

freshdesk_create_ticket
Destructive

Create a ticket. subject and description (HTML) are required, plus a requester — provide at least one of email, requester_id, or phone. status: 2=Open, 3=Pending, 4=Resolved, 5=Closed. priority: 1=Low, 2=Medium, 3=High, 4=Urgent. source: 1=Email, 2=Portal, 3=Phone, 7=Chat, 9=Feedbackwidget, 10=Outbound email. Freshdesk REST: POST /tickets.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNoTags (array of strings).
typeNoTicket type (e.g. Question, Incident).
emailNoRequester email (one of email/requester_id/phone required).
phoneNoRequester phone (one of email/requester_id/phone required).
sourceNoTicket source: 1=Email, 2=Portal, 3=Phone, 7=Chat, 9=Feedbackwidget, 10=Outbound email.
statusNoTicket status: 2=Open, 3=Pending, 4=Resolved, 5=Closed.
subjectYesTicket subject (required).
group_idNoId of the group to assign the ticket to.
priorityNoTicket priority: 1=Low, 2=Medium, 3=High, 4=Urgent.
cc_emailsNoEmails to CC on the ticket.
company_idNoId of the company the ticket belongs to.
descriptionYesTicket description, HTML content (required).
requester_idNoRequester (contact) id (one of email/requester_id/phone required).
responder_idNoId of the agent the ticket is assigned to.
custom_fieldsNoCustom field values, keyed by field name.

Schema Changelog

Changes observed during successful MCP inspections.

  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 specifying required fields, HTML content for description, and the exact enum values for status, priority, and source. It also mentions the REST endpoint. This is useful, though it does not cover side effects like return values or error conditions.

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 concise and well-structured: it states the action, then required fields, then enum mappings, then the REST endpoint. Every sentence adds direct value without verbosity. The information is front-loaded and easy to scan.

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 15 parameters and no output schema, the description covers the most critical aspects: the core action, required fields, requester options, and key enum values. Remaining optional parameters are documented in the schema. It does not explain return values, but that is less critical for a create operation.

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 baseline is 3. The description largely repeats what the schema already provides (required fields, enum values, requester requirement). It does not add new meaning beyond the schema descriptions, so no higher score is warranted.

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 starts with a specific verb and resource: 'Create a ticket.' It clearly distinguishes from sibling tools like freshdesk_update_ticket, freshdesk_add_note, and freshdesk_create_company by naming the resource and action. The REST endpoint is also provided, further clarifying the operation.

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 description clearly states the action and highlights the required fields and requester options, giving practical usage context. It does not explicitly mention when not to use this tool or point to alternatives, but the context is clear enough for a straightforward create operation.

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.