Skip to main content
Glama

Get organization

get_org
Read-only

Get one organization by id, including its members, plan, and billing summary.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
orgIdYesOrganization id (uuid).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
nameYes
planYes
myRoleNo
billingYes
membersNo
ownerIdYes
personalNo
ownerEmailNo
defaultProjectIdNo

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, so the description's non-mutating behavior is consistent and doesn't need restating. The description adds useful context: it returns members, plan, and billing summary, which clarifies the scope of data. It doesn't explicitly state that billing summary might be sensitive or that it returns a 404 if not found, but the annotations cover the key safety trait and the output schema likely details return values.

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?

One clear, front-loaded sentence with no filler. It states the action, the resource, and the included data without redundancy. Every word earns its place.

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

Completeness4/5

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

Given the simple single-parameter input, read-only annotations, and presence of an output schema, the description is largely complete. It names the included data (members, plan, billing summary), which gives the agent a good sense of what it will receive. It omits explicit error behavior, but for a read-only lookup with a well-schematized parameter this is a minor gap.

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 description coverage is 100% and the single parameter orgId is well documented as 'Organization id (uuid).' The description adds no additional semantic detail beyond the schema, such as where to find orgId or what constitutes a valid org. Baseline 3 is appropriate because the schema carries the full parameter explanation.

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 uses a specific verb ('Get'), a specific resource ('one organization by id'), and lists the key included data ('members, plan, and billing summary'). This clearly distinguishes it from sibling tools like list_orgs (which lists organizations) and create_org/update_org (which mutate organizations).

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?

The description clearly states the tool gets a single org by id, implying the user must know the org ID. It distinguishes from list_orgs implicitly by focusing on one org and its details, but it does not explicitly say 'use list_orgs to find orgs' or state when not to use this tool. Context is clear, but no explicit exclusions or alternatives are named.

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.7/5.0
Disambiguation5/5

Every tool targets a distinct resource/action: board retrieval is split into JSON vs image with explicit cross-references, and drawing tools are separated from the generic update_board. Look-alikes like list_documents vs list_diagrams and publish_listing vs use_template are differentiated clearly.

Naming Consistency4/5

Most tools follow a verb_noun pattern: create_project, list_documents, update_board, upsert_org_member. A few noun-only names like my_listings, project_file_counts and template_categories break the pattern, so naming is consistent but not uniform.

Tool Count2/5

40 tools is well beyond the 25+ threshold for a single server, even though the domains are clustered into org/project/document/board/template areas. The large surface will make tool selection and onboarding heavier for an agent than necessary.

Completeness3/5

Core lifecycle coverage for org/project/document/board/template is mostly present, and update_board serves as a flexible escape hatch. However, the board API reads rectangle/diamond/ellipse/free-text drawings and groups/links but only offers explicit create/erase for strokes and arrows; paid template purchase/access is also left unclear.

Resources