Skip to main content
Glama

List organizations I can triage

list_my_organizations
Read-onlyIdempotent

Lists organizations you belong to that have AI triage enabled, and shows whether AI grading is active, so you can identify which BugSecure orgs your triage tools can reach.

Instructions

Organisations the signed-in user belongs to that have enabled AI triage access — the only ones the triage tools can reach — and whether each also enabled AI grading. Use the ids with get_org_report_stats, list_org_certificates. If an expected organisation is missing, an Administrator of that organisation must enable "AI triage access" in its settings on BugSecure.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
organizationsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, destructiveHint, and openWorldHint. The description adds value by disclosing the filtering criterion (AI triage access) and that it also indicates whether AI grading is enabled, which is behavioral context beyond the annotations. No contradiction.

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 sentences with no filler. The first sentence states the purpose and scope, the second gives usage guidance. Efficient and front-loaded.

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 zero parameters and an output schema (signal indicates present), the description fully explains what the tool returns and how to use the results. It also covers edge case (missing org) and resolution. Nothing an agent needs 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?

Tool has 0 parameters, so the baseline is 4. The description adds no parameter info (none needed) but clearly explains what the returned ids should be used for, which is useful context.

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?

Description states a specific verb and resource: 'Organisations the signed-in user belongs to that have enabled AI triage access' — clearly a filtered list. It also differentiates from siblings by noting these are the only orgs the triage tools can reach, which helps distinguish from other org-listing tools.

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?

Explicitly tells the agent to 'Use the ids with get_org_report_stats, list_org_certificates', and provides troubleshooting guidance: if an org is missing, an Administrator must enable 'AI triage access'. This is clear when-to-use and alternative-routing.

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