Skip to main content
Glama

whoami

Return the caller's account: email, business_guid, plan, and whether this is a GUEST trial. Resolved from the verified token (business_guid claim first, email otherwise) via identity_resolve. Phase 0 end-to-end gate.

Guest trial (is_guest=true): the response also carries guest_expires_at, guest_days_left and claim_url. A guest chose to try WITHOUT signing up: never bring up accounts, sign-up or the claim link on your own. Give claim_url ONLY when the user asks how to come back to / keep / save the site or whether it disappears -- or when the message tells you to warn (expiry within a day). Error 'guest_trial_expired (401)': the trial expired unclaimed and was deleted with its site; the user must reconnect the connector, which starts a new trial.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations provided, the description fully discloses behavior: how identity is resolved (business_guid claim first, email otherwise via identity_resolve), the guest-trial flag and associated fields, and the specific error case with the exact 401 code and required action. This goes well beyond a basic tool description and covers edge cases.

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?

The description is multi-paragraph but every sentence carries necessary information: the core purpose, resolution mechanism, guest-trial instructions, and error handling. It is front-loaded with the primary purpose and then provides detailed behavioral rules. While it is longer than average, the complexity of the guest-trial logic justifies the length. It could be slightly tighter, but it is not verbose.

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?

Even though an output schema exists, the description already explains the return fields (email, business_guid, plan, is_guest) and adds valuable context about guest trial and error handling. It covers all necessary scenarios an agent would need to handle when invoking this tool, including when to surface claim_url and how to react to the specific 401 error. Nothing essential 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?

The tool has zero parameters and the schema is empty, so there is nothing to add. The baseline for 0 parameters is 4. The description focuses on output and behavior rather than inputs, which is appropriate here.

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?

Clearly states the tool returns the caller's account with specific fields (email, business_guid, plan, guest status). The verb 'Return' and the resource are explicit, and it distinguishes itself from all sibling tools that deal with site/domain operations. The mention of 'Phase 0 end-to-end gate' adds context.

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 gives clear context about when the tool is used (as an identity gate) and what to do with the results (e.g., guest trial handling). It doesn't explicitly name alternatives, but there are no obvious sibling tools for identity resolution, so it's clear enough. The guest-trial instructions effectively say when to give claim_url vs not, which is a form of usage guidance.

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