Skip to main content
Glama

AI Manga & Anime Generator - Mangii MCP

Get API credits

manga.get_credits
Read-onlyIdempotent

Return the API wallet. Spendable is apiPackCredits plus purchase-backed packCredits. weeklyCredits is display-only and does not pay MCP or HTTP generate. Use this before a paid tool to see if you need manga.buy_credits.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
include_notesNoWhen true (default), include a notes string explaining that weeklyCredits does not spend on API or MCP.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errorNoMachine error code such as invalid_request, insufficient_credits, or quality_forbidden.
notesNoWallet rules for agents.
messageNoHuman-readable error. Never includes stack traces or internal paths.
packCreditsNoIn-app pack credits. Only the purchase-backed portion is included in spendableCredits.
weeklyCreditsNoIn-app weekly credits. Display-only for API/MCP.
apiPackCreditsNoSpendable API credits for generate tools.
spendableCreditsNoapiPackCredits plus purchase-backed packCredits. Same number useApiCredit will spend.

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare a safe, non-destructive, idempotent read profile, so the bar is lower. The description adds real behavioral context beyond annotations by explaining the economic semantics of the returned fields — that spendable equals apiPackCredits plus packCredits, and that weeklyCredits is cosmetic and unusable for MCP/HTTP generation. This prevents an agent from misinterpreting the wallet data. Not a 5 because it does not address the output schema details, though an output schema exists.

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?

Four sentences, no filler. The core action is front-loaded, each subsequent sentence clarifies wallet semantics or usage routing, and the final sentence ties the purpose to a sibling. A minimal, efficient definition that earns every word.

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?

For a low-complexity getter with a 100%-documented parameter, an output schema, and safety-carrying annotations, this description covers what matters: when to call it and how to interpret spendable vs display-only credits. Minor gap: it doesn't enumerate which siblings are the 'paid tools,' but that's inferable from the sibling list and the explicit buy_credits reference.

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%: include_notes is fully documented in the input schema. The description reiterates the weeklyCredits non-spendable note that the parameter would include, but adds no new parameter-level meaning beyond what the schema already provides. Baseline 3 is appropriate when the schema does the heavy lifting.

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 opens with a specific verb and resource ('Return the API wallet') and then defines the wallet's structure, distinguishing spendable credits from display-only weeklyCredits. It clearly differentiates from sibling manga.buy_credits by framing this as the check-before-buy operation, so an agent can't confuse the two.

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?

Explicit guidance is given: 'Use this before a paid tool to see if you need manga.buy_credits.' This states when to call, flags the alternative tool, and even explains the decision criterion (weeklyCredits does not pay MCP or HTTP generate, so it should not count toward affordability). No inference is required.

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

Each tool targets a distinct resource and action: story creation, continuation, regeneration, panel listing, story listing, style listing, credit lookup, credit purchase, and job polling. Even the credit-related tools are clearly separated by purchase versus query. There is no meaningful overlap that would confuse an agent.

Naming Consistency5/5

All tools consistently use the manga. prefix with snake_case verb_noun names like create_story, list_panels, and regenerate_panel. The pattern is uniform across the entire set, making the API predictable and easy to navigate.

Tool Count5/5

Nine tools is a well-scoped size for a manga generation server: three creation-oriented tools, three listing tools, two credit tools, and one async job helper. Each tool serves a clear, non-redundant role in the workflow.

Completeness4/5

The core manga creation lifecycle is well covered: create, continue, regenerate, list stories, and list panels, plus style discovery and credit management. The only notable gaps are destructive operations like deleting stories or panels and perhaps a story detail endpoint, but these are not essential to the primary generation workflow.