Skip to main content
Glama
lauramariel

Demo CRM MCP Server

by lauramariel

Create company

create_company

Add a new company record to the CRM by providing a name and optional website or industry details.

Instructions

Create a new company record in the CRM.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
websiteNo
industryNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/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 behavioral burden. It implies a mutation but says nothing about permissions, whether duplicate company names are rejected, what the response contains, or whether the call is idempotent — a meaningful gap for a create tool.

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 with no filler or redundancy. Its brevity is efficient, though it borders on under-specification rather than true conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations, no output schema, and 0% parameter coverage, the definition leaves out required-field expectations, validation behavior, and result semantics. It is not complete enough for an agent to call it confidently in edge cases.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% across 3 parameters, and the description adds no field-level meaning beyond the bare schema types. It does not indicate that 'name' is required or explain the intended format of website/industry, so it fails to compensate for the coverage gap.

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?

States a specific verb ('Create') and resource ('company record in the CRM'), which cleanly separates it from siblings like create_contact and create_deal by resource noun. It does not, however, explicitly differentiate itself from update_company or mention interaction with list_companies, so it sits at clear-but-not-differentiating.

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 guidance on when to create versus update an existing company, no deduplication advice, no prerequisites or alternatives named. The agent must infer usage entirely from the tool name.

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