Skip to main content
Glama
652036

ArcGIS Pro MCP

by 652036

Edit Workspace Apply

arcgis_pro_edit_workspace_apply
DestructiveIdempotent

Apply multiple dataset edits in one ArcGIS Pro edit transaction, verifying counts and rolling back all changes if any validation count differs.

Instructions

在一个 arcpy.da.Editor 事务内原子执行多数据集预检计划;任一计数变化即全部回滚。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
edit_tokenYes
operationsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

B3.2/5.0
Behavior4/5

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

Annotations already declare destructiveHint=true and idempotentHint=true, but the description adds valuable transactional semantics: atomic execution inside an arcpy.da.Editor transaction and full rollback if any count changes. It does not cover permissions, error handling, or concurrency beyond that, so not a 5.

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 single sentence is front-loaded with the core action and rollback condition, with no filler. It is perhaps too terse given the tool's complexity, but structurally efficient.

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?

The description omits any parameter semantics and prerequisite guidance (e.g., run preflight first), which is critical for a destructive apply tool with 0% schema coverage. Output schema and annotations cover return shape and safety profile, but the remaining gaps are substantial.

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

Parameters1/5

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

Schema description coverage is 0% for two required parameters (operations, edit_token). The description never explains what operations should contain, what edit_token represents, or how they relate to the preflight plan, so it does not compensate for the schema 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 action ('原子执行多数据集预检计划' / atomically execute a multi-dataset preflight plan) within an arcpy.da.Editor transaction. It is clear but does not explicitly differentiate itself from sibling tools like arcgis_pro_edit_workspace_preflight, leaving the apply-vs-preflight distinction to inference.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is implied by the reference to a '预检计划' (preflight plan), suggesting this is the apply step after preflight. However, there is no explicit when/when-not guidance or named alternatives such as arcgis_pro_edit_workspace_preflight.

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