Skip to main content
Glama
lauramariel

Demo CRM MCP Server

by lauramariel

Update company

update_company

Change selected fields on an existing company record in the CRM. Only provided fields are changed, enabling targeted edits without overwriting other data.

Instructions

Update fields on an existing company. Only provided fields are changed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo
websiteNo
industryNo
companyIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.8/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 discloses partial-update semantics ('only provided fields are changed'), which is genuinely useful, but says nothing about authorization requirements, whether changes are reversible, collision handling, or the response shape for a mutation tool.

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 with no waste; the update scope and partial-update behavior are front-loaded.

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 description is far too thin. It lacks permission context, return behavior, and parameter documentation that an agent needs to call it correctly.

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%, so the schema documents no parameter meaning. The description only implies that fields are updatable and that omissions are left unchanged, but never identifies the parameters (name, website, industry, companyId) or their formats and constraints.

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 clear verb (update) and resource (company), and the second sentence clarifies partial-update semantics. It does not explicitly differentiate from create_company or update_contact beyond the resource name, but the resource is unambiguous.

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 use this versus create_company or the sibling update tools, and no prerequisites such as required permissions or the need for an existing company ID.

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