Skip to main content
Glama
652036

ArcGIS Pro MCP

by 652036

Da Update Field Constant

arcgis_pro_da_update_field_constant
Idempotent

Update an ArcGIS Pro dataset field with a constant value, using an optional WHERE clause to target specific rows. Returns verifiable structured results.

Instructions

ArcGIS Pro:更新字段。返回可验证的结构化结果;写入和路径限制以服务能力为准。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
field_nameYes
dataset_pathYes
value_stringYes
where_clauseNo
max_rows_updatedNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

C2.6/5.0
Behavior3/5

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

Annotations already declare the safety profile (write, idempotent, non-destructive, closed-world), so the description only needs to add context. It adds that results are verifiable/structured and that write and path restrictions depend on service capabilities, which hints at authorization and path constraints, but says nothing about how a where_clause interacts with max_rows_updated or what happens to rows beyond the cap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Short and front-loaded with the action, but the second clause is boilerplate that could apply to almost any tool in this server. It is not wasteful so much as under-committed: the brevity reflects missing content rather than efficient phrasing.

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?

An output schema exists, so return values need not be described, but for a write tool that can affect up to max_rows_updated rows with a filtering clause, the definition omits the confirmation/scope story entirely. Combined with undocumented parameters and no sibling routing, an agent has too little to invoke this safely among the many near-identical update siblings.

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?

With 0% schema description coverage across five parameters, the description carries the full burden, yet it explains none of them. The non-obvious semantics of where_clause (empty default, filtering scope) and max_rows_updated (default 1000, silent truncation behavior) are especially important for a bulk field write and are left entirely unexplained.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a verb+resource ('更新字段' = update field), which is a real purpose, but it drops the distinguishing detail from the tool name ('constant') and does not separate it from siblings like arcgis_pro_da_update_features, arcgis_pro_gp_calculate_field, or arcgis_pro_gp_alter_field. An agent cannot tell from the description that this sets a field to a single fixed value rather than a computed or row-by-row update.

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 when-to-use guidance, no prerequisites, and no mention of when to prefer this over calculate_field or update_features. The only guidance-like text ('写入和路径限制以服务能力为准') is a generic caveat about service-side limits, not a condition that selects this tool.

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