Skip to main content
Glama
jamesdeane2

MCP IT Glue Server

by jamesdeane2

create_organization

Create a new organization in IT Glue by providing a name and optional details such as description, type, status, and quick notes.

Instructions

Create a new organization in IT Glue.

Args: name: Organization name (required) description: Organization description organization_type_id: Organization type ID organization_status_id: Organization status ID quick_notes: Quick notes for the organization

Returns: JSON string with the created organization

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
descriptionNo
quick_notesNo
organization_type_idNo
organization_status_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/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 of behavioral disclosure. It only says that a new organization is created and a JSON string is returned; it does not disclose permissions, validation behavior, duplicate-name handling, or effects of omitted optional fields.

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?

The description is well-structured with the purpose stated first, followed by an Args list and a Returns line. It is scannable and avoids unnecessary prose, though the Args section largely restates the schema.

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?

All parameters are listed and the return format is specified, with an output schema also present. However, operational context is missing, such as prerequisites for type/status IDs and behavior around optional fields, making the description adequate but not comprehensive.

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 schema has 0% description coverage, and the Args section adds basic human-readable labels for all five parameters while marking name as required. This is helpful, but it does not explain where IDs come from, formats, or constraints beyond what the property names already imply.

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 states a specific verb and resource: 'Create a new organization in IT Glue.' It is immediately distinguishable from related siblings like update_organization, list_organizations, get_organization, and search_organizations.

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?

No explicit guidance is given about when to use this tool versus alternatives. It does not mention that existing organizations should be updated via update_organization, nor that organization_type_id and organization_status_id may require lookups via list_organization_types or list_organization_statuses.

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

Deploy Server

Other Tools