Skip to main content
Glama

openwisp_patch_organization_geo_settings

Partially update an organization's geo settings by specifying its UUID or ID, letting you modify selected location parameters without replacing the full configuration.

Instructions

[Category: Geo & Locations] Partially update organization geo settings. (HTTP PATCH /api/v1/controller/organization/{organization_pk}/geo-settings/)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
organization_pkYesOrganization UUID or ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.0

TDQS

B3.1/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 burden. It discloses the HTTP method and endpoint, which implies partial mutation, but says nothing about required permissions, authentication, reversibility, which fields can be patched, or failure modes. For a mutation tool this is a notable gap.

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 compact bracketed clauses: category tag then action plus endpoint. Front-loaded, zero filler, easy to scan.

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?

For a single-parameter partial-update tool with no output schema and no annotations, the description gives the endpoint and mutation type but omits the body/payload semantics that a PATCH tool really needs (what fields are patchable, whether the body is required). Adequate but incomplete.

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

Parameters3/5

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

Only one parameter exists and schema description coverage is 100%, so the schema already fully documents organization_pk ('Organization UUID or ID'). The description adds nothing about parameters beyond the path template showing where organization_pk fits. Baseline 3 given full schema coverage.

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 (partially update) and resource (organization geo settings), distinguishing it from the sibling openwisp_update_organization_geo_settings via the 'partially' qualifier and the PATCH HTTP method. The category tag and endpoint path add precision. It only marginally differentiates from update_organization_geo_settings without spelling out the semantic difference.

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 is given about when to use PATCH versus the sibling openwisp_update_organization_geo_settings (PUT), nor any prerequisites, permissions, or context. The agent must infer the partial-vs-full-update distinction entirely from the word 'Partially'.

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