Skip to main content
Glama

get_limits

Read-onlyIdempotent

Retrieve plan limits, trial quota, and upgrade state via GET /v1/limits

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already indicate read-only and idempotent behavior. The description adds useful context by naming the HTTP method and endpoint (GET /v1/limits) and enumerating the response fields (plan limits, trial quota, upgrade state), which goes beyond the name alone.

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 description is a single, front-loaded sentence with no wasted words. It states the verb, resource, and endpoint efficiently.

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 parameterless, read-only tool with no output schema, the description adequately covers what the tool does and what it returns. There is no ambiguity or missing information for an agent to invoke it correctly.

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, so the schema is trivially complete. The description does not need to add parameter details, and the baseline of 4 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 clearly identifies the action ('Retrieve') and the specific resource ('plan limits, trial quota, and upgrade state') with an explicit endpoint. This distinguishes it from sibling tools like get_usage, which focuses on usage data.

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 provides clear context by specifying the exact data returned, making it obvious when this tool is appropriate. It does not mention alternatives or exclusions, but the resource scope is unambiguous for a simple getter.

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

Each tool targets a distinct concern: account limits, usage, workflow schema, workflow list, single scoring, batch scoring, feedback, and payload validation. The only potential overlap (score_workflow vs score_batch) is clearly delineated by batch versus single operation.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with underscore separation (get_*, list_*, score_*, submit_*, validate_*). The naming convention is uniform and predictable.

Tool Count5/5

With 8 tools, the server is well-scoped for a scoring API, covering account management, workflow discovery, scoring, validation, and feedback without unnecessary redundancy.

Completeness5/5

The tool set provides full lifecycle coverage for the domain: discovering workflows, fetching schemas, validating payloads, scoring (single or batch), checking account limits/usage, and submitting feedback. No obvious gaps exist.

Resources