Skip to main content
Glama
hypn4

Salesforce MCP Server

by hypn4

salesforce_update_record

Update existing Salesforce records by providing the object type, record ID, and field values. Returns the update result.

Instructions

Update an existing Salesforce record.

Args: sobject: SObject type (e.g., 'Account', 'Contact', 'Lead') record_id: Salesforce record ID (18-character ID) data: Fields to update as key-value pairs. Example: {"Industry": "Finance", "Website": "https://acme.com"}

Returns: Update result with success status

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataYes
sobjectYes
record_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It confirms that the operation mutates an existing record and vaguely mentions a 'success status', but it omits permissions, side effects, failure behavior, partial-update semantics, and irreversibility. It adds little beyond what the tool name already conveys.

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 a clear opening line followed by Args and Returns sections. It avoids filler and includes a useful example for the data parameter. The Returns line is somewhat generic but not wasteful.

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 required parameters are documented and the return is mentioned, so a basic invocation is possible. However, with no annotations and fifteen sibling tools, the description omits important context such as what happens when the record does not exist, permission requirements, and how this tool relates to upsert or bulk alternatives.

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

Parameters5/5

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

The input schema has 0% property descriptions, but the description fully documents all three parameters: sobject with concrete examples, record_id as an 18-character Salesforce ID, and data as a key-value map with a clear example. This completely compensates for the schema gap and adds practical meaning.

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?

The description states a specific action ('Update') and resource ('existing Salesforce record'), making the core purpose clear. It does not explicitly differentiate from sibling tools like salesforce_upsert_record or salesforce_bulk_update, so it falls short of full sibling distinction.

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?

The description provides no guidance on when to use this tool versus alternatives such as salesforce_upsert_record for create-or-update behavior or salesforce_bulk_update for multiple records. 'Update an existing Salesforce record' merely restates the tool's purpose and offers no exclusions or selection criteria.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hypn4/salesforce-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server