Skip to main content
Glama

ado_wiki_update_page

Create or update an Azure DevOps wiki page with markdown content. Optionally use an etag for optimistic concurrency to prevent overwriting concurrent edits.

Instructions

Create or update an Azure DevOps wiki page at the specified path. If the page does not exist it will be created; if it exists it will be updated. To prevent overwriting concurrent edits, pass the etag returned by ado_wiki_get_page as the etag input — the update will fail with a conflict error if the page changed since. Omit etag to do an unconditional overwrite. Returns the updated page content and its new etag. Requires vso.wiki_write PAT scope.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
etagNoETag from a previous ado_wiki_get_page call. Enables optimistic concurrency: the update is rejected if another edit happened since the page was read.
pathYesWiki page path (e.g. /MyPage or /Parent/Child)
wikiIdYesWiki ID (GUID) or wiki name
contentYesMarkdown content for the wiki page
messageNoOptional commit message for the page update
projectNoProject name. Uses default if omitted.

Schema Changelog

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

  1. First observedv0.2.0

TDQS

A4.9/5.0
Behavior5/5

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

With only readOnlyHint=false and openWorldHint=true in annotations, the description carries the behavioral burden and does so fully. It discloses mutation semantics, conditional vs unconditional overwrite, conflict behavior, return values (updated content and new etag), and authorization requirements.

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?

The description is front-loaded with the core action, then covers etag guidance, return values, and auth requirements in a tight sequence. Every sentence adds needed context and there is no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 6 parameters, no output schema, and a mutating operation, the description covers everything needed to call the tool correctly: return values, concurrency behavior, auth scope, and when to omit etag. Nothing critical is missing.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3, but the description adds operational meaning: where the etag comes from and what happens with and without it, plus how create and update are tied to the path. It stops short of 5 because the etag description mostly paraphrases the schema and no parameter value constraints or examples are added.

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

Purpose5/5

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

The description clearly names the specific action ('Create or update an Azure DevOps wiki page') and the resource (wiki page at a path). It also explains the create/update conditional behavior, which distinguishes it from read-oriented siblings like ado_wiki_get_page and ado_wiki_list_pages.

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

Usage Guidelines5/5

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

The description gives explicit usage guidance: pass the etag from ado_wiki_get_page to prevent overwriting concurrent edits, omit it for an unconditional overwrite, and requires vso.wiki_write PAT scope. It also names the failure mode (conflict error), so an agent knows exactly when to use this tool and how to prepare the call.

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/Laonnda/azure-devops-local-mcp'

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