Skip to main content
Glama

Choose which Jira board this site's tickets are filed on

set_jira_project
DestructiveIdempotent

Use this when the user wants accessibility findings exported from a site to go to a different Jira project, or is setting one up for the first time. WRITES to this website's Inclusify configuration, never to the site itself and never to Jira — it records which project key exports should use, and files no tickets by itself. It CANNOT connect Jira: authorising Atlassian is a browser OAuth flow on the Inclusify panel's Integrations page and no assistant can do it, so this refuses until the workspace is connected. It also cannot list the available projects — ask the user for the project key, or have them read it off the board. REQUIRES CONFIRMATION, because pointing this at the wrong board sends the work to a team that did not ask for it while the team that did sees nothing, and nobody notices until they ask why no tickets were ever raised. The account owner is emailed a record, including the previous key. Needs the PRO plan, matching the panel.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
confirmNoLeave this out on the first call to get a preview of exactly what would change, plus a confirmation token. Call again with the same arguments and that token to apply the change. The token lasts 10 minutes and works once.
websiteYesThe website domain as registered in Inclusify, e.g. "example.com".
projectKeyYesThe Jira project key, e.g. "ACC" or "WEB2" — the prefix on that board's issue numbers, not the board's display name. Case is normalised to upper.

TDQS

A4.4/5.0
Behavior5/5

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

Goes well beyond the annotations: explains exactly what is written and what is never touched, why confirmation is required (misrouted work to a team that didn't ask for it), that the account owner is emailed a record including the previous key, and that a PRO plan is required. Nothing contradicts readOnlyHint=false or destructiveHint=true; the one-use confirmation token sits in mild tension with idempotentHint=true, but the schema documents that token explicitly and the underlying end-state change is idempotent.

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?

Around 180 words — long, but every sentence carries distinct information (when, what, exclusions, confirmation rationale, notification, plan gate) and the usage guidance is front-loaded. The density is justified for a destructive config tool with a two-step confirmation flow and several refusal conditions.

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 3-parameter tool with no output schema, the description covers preconditions (PRO plan, connected workspace), the exact effect and non-effects, the confirmation flow, failure modes (refusal when unconnected, inability to list projects), and post-change notification. An agent has everything needed to decide, invoke, and recover from edge cases.

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?

Schema coverage is 100% and the schema itself is unusually detailed (domain format with 'example.com', project key with 'ACC'/'WEB2' examples, explicit warning against display names, case normalisation, and the full two-call confirm-token workflow). The description reinforces the projectKey semantics by noting the tool cannot list projects, but adds no new parameter-level detail, so the baseline 3 applies.

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 states a specific verb and resource (records the Jira project key exports should use, in the Inclusify configuration) and immediately draws the boundary: it 'never' writes to the site or to Jira and 'files no tickets by itself,' which cleanly distinguishes it from any ticket-creating sibling. The title 'Choose which Jira board this site's tickets are filed on' reinforces exactly the outcome the tool produces.

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

Usage Guidelines4/5

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

Opens with an explicit when-to-use ('when the user wants accessibility findings exported from a site to go to a different Jira project, or is setting one up for the first time') and gives clear when-nots: it refuses until Atlassian is connected and cannot enumerate projects, so the agent must ask the user for the key. It routes around alternatives (browser OAuth flow, reading the key off the board) but stops short of naming sibling tools, which keeps it from a 5.

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

A4.3/5.0
Disambiguation4/5

The descriptions do exceptional cross-referencing work, explicitly separating near-neighbor pairs (add_website vs add_domain, list_alt_findings vs check_page_alt_text, plan_options vs billing_link, widget_status vs widget_usage). A few clusters remain that an agent could confuse without reading carefully, notably site_overview vs compliance_status (both report statement existence and scan-record state) and crawl_summary vs list_monitored_pages vs site_overview (all touch coverage numbers). Overall, distinct purposes are clearly delineated despite the large surface.

Naming Consistency4/5

All names are lowercase snake_case with strong family patterns: list_* (5 tools), add_* (3), set_* (7), plus org_* and *_history pairs. The main inconsistency is the mix of verb-led names (list_violations, set_slack_channel, start_crawl) with noun-led read names (site_overview, compliance_status, widget_usage, next_steps), but the noun-led names follow a coherent 'what it returns' vocabulary (status, summary, history, overview, rollup). Minor deviations rather than chaos.

Tool Count3/5

36 tools is heavy and sits above the 25-tool threshold where agent navigation starts to degrade, but the server covers a genuinely broad domain: website lifecycle, monitoring, four finding types, four live-audit tools, seven config setters, org rollups, billing, and CI. Most tools earn their place and none are duplicates, but several could plausibly be merged (set_slack_channel/set_slack_events/set_monitoring_settings into one notifications tool; list_violations/list_alt_findings/list_content_findings with a filter). The count is on the edge of unwieldy for an agent's tool-selection step.

Completeness3/5

The read/audit/analysis side is rich and well-covered: findings, history, live checks, org rollups, coverage, and validation all have tools. However, the write side is one-directional: add_monitored_pages is explicitly add-only, and there is no remove_website, remove_domain, or remove_monitored_pages, so teardown and 'stop monitoring this page' requests hit dead ends that the descriptions acknowledge belong to the panel. Statement content writing and widget installation are also panel/browser-only by design, which is documented but still leaves those operations outside the agent's reach.