Skip to main content
Glama

get_account

Read-onlyIdempotent

Credit balance and plan for the authenticated account. Check this before a batch of generations. REQUIRES AN API KEY: add "Authorization: Bearer acd_live_…" to this MCP server; a key is created by a signed-in human at https://aicontentdrop.com/settings/integrations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNo
planYesfree | starter | professional | ultra | enterprise_max
usernameNo
credits_remainingYes

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, so safety is covered. The description adds useful operational behavior beyond the annotations: a bearer API key must be configured, and the key is issued from a specific signed-in human flow.

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 main purpose is front-loaded, followed by an explicit use case and the required auth setup. The API-key note is lengthy but necessary; no sentences are wasted.

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 that there are no parameters, the output schema exists, and annotations cover the safety profile, the description provides sufficient context: what is returned, when to call the tool, and what authentication is required. An agent can decide and invoke it correctly without missing information.

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 input schema has zero parameters, so schema coverage is 100% and there is nothing for the description to add. The baseline for zero-parameter tools is 4.

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 resource (authenticated account) and what it exposes (credit balance and plan), and gives an explicit usage context ('Check this before a batch of generations'). This makes it stand apart from siblings like estimate_credit_cost or generate_video, which target cost estimation and generation.

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?

It states a clear trigger — check before a batch of generations — and mentions the API-key prerequisite. It does not name alternative tools or when-not conditions, so it falls slightly short of 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.2/5.0
Disambiguation5/5

Each tool targets a clearly distinct resource or action: account balance, article retrieval/search, model listing, cost estimation, generation triggering, and generation status/list. Even the two cost-related tools (list_models and estimate_credit_cost) are distinguishable, since one lists catalog prices and the other estimates a specific batch.

Naming Consistency5/5

All tool names follow the same lowercase snake_case verb_noun pattern: generate_, get_, list_, search_, estimate_. The verbs are consistent and predictable, making it easy to guess the tool name for a desired action.

Tool Count5/5

At 8 tools, the set is well-scoped for a platform covering video generation, account management, and a supporting article/knowledge base. Each tool earns its place and the count feels neither sparse nor bloated.

Completeness4/5

The core generation lifecycle is covered: estimate cost, generate, poll status, list history, and check account balance. Article search and retrieval are also covered, but the platform appears to offer image models based on list_models while only video generation is exposed, leaving an obvious generation gap.