Skip to main content
Glama

manage_accessibility_plugin

Add (or remove) Orivox's accessibility widget: a floating accessibility button that appears on EVERY page of the site and opens a toolbar of reader aids for visitors.

Reach for this the moment the user asks for an accessibility button, an accessibility menu or toolbar, or says their site should be accessible / usable with a screen reader / compliant -- this one call installs the whole thing. Do NOT hand-build an accessibility widget with apply_dom_ops.

icon picks the button's glyph: "person" (default, the standard accessibility figure), "wheelchair", or "user". position puts it at the bottom "right" (default) or bottom "left" of the screen. Calling this again with different options REPLACES the existing widget instead of adding a second one, so it is also how you change the icon or move it to the other side. action="remove" takes it off the site entirely.

changed is byte-honest: False means NO file was written at all, because the site already looked exactly like this -- do not announce a fresh change. True means at least one file was rewritten.

outcome says which end state you are in; describe it to the user IN THEIR OWN LANGUAGE (never echo these tokens):

  • "installed" -- the widget is now on every page with the given icon/side.

  • "already_installed" -- it was already exactly like that; nothing changed.

  • "removed" -- it is off the site.

  • "was_not_installed" -- there was none, so there was nothing to remove.

  • "install_not_confirmed" / "removal_not_confirmed" -- the result contradicts itself. verify_before_reporting is true for these two: check the site with get_preview_url before telling the user anything about the widget, and do not claim success or failure.

No re-publish is needed for a preview, but a LIVE site only shows the widget after publish_website runs again.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
iconNoperson
actionNoadd
positionNoright
project_guidYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. Added

TDQS

A5/5.0
Behavior5/5

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

No annotations are provided, so the description carries the full behavioral burden, and it does so thoroughly. It discloses that repeated calls replace the widget rather than duplicate it, that changed is byte-honest, that some outcomes require verification via get_preview_url, and that live sites need publish_website to reflect the change.

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 content is long enough to be trustworthy but tightly structured: summary, trigger conditions, param meanings, action semantics, output states, and publication caveat are each in clearly separated, purposeful sections. Every sentence adds decision-relevant information rather than repeating schema entries or fluff.

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?

For a 4-parameter mutation tool with no annotations and minimal parameter schema coverage, this description is complete. It covers when to use it, what each parameter means, idempotent replacement behavior, removal, every outcome state, how to verify contradictory results, and the publish/deprecation implication. Nothing an agent needs to call it correctly is left to guesswork.

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 schema has zero property descriptions, but the description adds concrete semantics for icon, position, and action, including defaults and replacement behavior. It even explains the meaning of byte-honest output states beyond the input schema. The only parameter left implicit is project_guid, but its purpose is evident from its name and the required context of the call.

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 specifies a concrete verb and resource: add or remove Orivox's accessibility widget, and even describes the widget as a floating button with reader aids on every page. It also names apply_dom_ops as an alternative to avoid, which clearly separates this tool from a sibling. An agent can tell what this tool does without opening the schema.

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?

It gives explicit triggers: use this when the user asks for an accessibility button, menu, toolbar, screen-reader support, or accessibility compliance. It also gives an explicit exclusion: do not build the widget by hand with apply_dom_ops, and it explains when to call again for replacement or removal.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation4/5

Most tools pair a distinct action with a distinct resource and long descriptions make intent clear. Still, `search_domains` already provides exact-domain checks, overlapping with `check_domain`, and the `create_project` vs `create_new_site` vs `create_page` cluster takes careful reading.

Naming Consistency5/5

The vast majority are snake_case verb_noun: list_projects, create_project, delete_page, get_preview_url, write_asset, query_database, publish_website. The only visible outlier is whoami, but it is standard enough that it does not disrupt predictability.

Tool Count2/5

At 36 tools this is meaningfully heavier than the rubric's 'too many' threshold, even though the scope spans websites, backends, domains, gallery images, and databases. It makes selection harder and a sizeable portion of the surface is niche or lifecycle internal.

Completeness4/5

The core site lifecycle is well covered: project, htmlmanag, assets, preview/publish, validation, deletion, uploaded images, backend files/logs, database reading, domain search and purchase linking. Workable non-critical gaps exist, e.g. no separate project metadata rename and no direct way to delete database rows or a database outside of deleting the project.

Resources