Skip to main content
Glama

Account Export

account_export
Read-onlyIdempotent

Export this account's own data across every table the account owns, as the same JSON envelope the REST route returns. The set of tables served is derived from the same ownership reflection that decides what an account deletion removes, so a table the account can destroy is a table it can also read. Credentials never appear: columns held encrypted at rest are withheld unless recorded as the account's own content, and password hashes, reset and verification tokens, and API key hashes are withheld by name. Some tables are deliberately excluded -- see docs/ACCOUNT_DATA_EXPORT.md, and note that the coverage block on every response lists exactly which models are served and which are excluded with their reasons. Artifacts are described by their metadata rows rather than inlined. Bounded rather than streamed: each model reports truncated and the envelope reports complete, so narrow to one model and raise rows_per_model rather than re-reading everything. This is a data export, not an erasure request and not a claim of regulatory compliance. Requires authentication and the account:export scope.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modelsNoModel names to narrow to, which is how a caller pages a table that truncated without re-reading the others. Omit to export every model the coverage block lists as served.
rows_per_modelNoRow ceiling applied to each model separately. Defaults to 500, maximum 5000.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes

TDQS

A4.3/5.0
Behavior5/5

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

Annotations declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, and the description is fully consistent (no contradiction). Beyond that, it adds rich procedural detail: which credential fields are withheld by name, the ownership-reflection derivation of served tables, artifact metadata behavior, the coverage-block contract, and auth requirements. This is exactly the kind of context that prevents a caller from misinterpreting the result set.

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?

Eight dense, information-carrying sentences with zero filler. It front-loads the core operation, then flows logically through exclusions, security withholdings, paging behavior, and non-goals. At ~250 words it's long, but every sentence carries unique weight — the one knock is that an agent must read to the very end to find the auth requirement ('Requires authentication and the account:export scope').

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 security-sensitive, paginated export tool with two parameters and a rich output schema, the description covers all bases: data scope, credential redaction, explicit exclusions with a documentation pointer, the paging protocol, and disclaimers about non-equivalence to erasure or compliance. The only marginal omission — rate limits or response sizes beyond rows_per_model — doesn't rise to a missing gap. A 5.

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?

Schema coverage is 100%, so per rubric the baseline is 3. The description adds real value by explaining the truncation contract — 'narrow to one model and raise rows_per_model rather than re-reading everything' — which clarifies both the `models` and `rows_per_model` parameters' operational meaning. It doesn't add syntax details for the `models` enum values, so it's a strong 4, not a 5.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Excellent verb+resource clarity: 'Export this account's own data across every table the account owns' is specific and immediately scopes the operation. The description even explains the envelope format and table derivation. However, while it's clear about what sets this tool apart from generic lookups, it never explicitly distinguishes it from siblings like audit_export — the rubric's 5 requires exactly that kind of explicit sibling differentiation.

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 strong paging and execution guidance: 'Bounded rather than streamed: each model reports truncated and the envelope reports complete, so narrow to one model and raise rows_per_model rather than re-reading everything.' It also clearly states what this is NOT for ('not an erasure request and not a claim of regulatory compliance') and points to docs for exclusions. It stops short of naming alternative tools for specific scenarios, so a 4.

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

Every tool targets a distinct resource and action, with detailed descriptions that clearly separate overlapping domains (e.g., consulting vs. marketing vs. outreach). Even within the same domain, tools like 'create_consulting_deliverable' and 'create_consulting_document_revision' are unambiguous due to their specific nouns.

Naming Consistency5/5

All tools follow a consistent verb_noun snake_case pattern (e.g., 'create_invoice', 'get_deal', 'list_agents'). The few exceptions like 'locus_determine_from_scores' still adhere to the verb_noun structure and do not break the pattern.

Tool Count1/5

With 124 tools, the server is massively over-scoped for typical MCP use. The tool count far exceeds the '50+ extreme mismatch' threshold, making it nearly impossible for an agent to efficiently navigate or select the right tool without extensive context. Even a large platform should consolidate or expose fewer tools.

Completeness5/5

The tool surface covers CRUD and lifecycle operations across at least 10 domains (sales, consulting, marketing, outreach, accounting, workflows, ticketing, API keys, feedback, platform metrics). Each domain appears to have no obvious gaps—e.g., invoicing includes create, update, send, mark paid, void; ticketing includes create, update, archive, dependencies, batch, scenarios, validation.

Resources