Skip to main content
Glama

create_api_key

Create a new live API key. Only available for active accounts. The key is shown once — store it immediately.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
labelNoHuman-readable label (e.g. 'claude-desktop')

TDQS

A4/5.0
Behavior4/5

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

With no annotations provided, the description discloses two key behaviors: the tool requires an active account, and the key is shown only once, requiring immediate storage. This is valuable but could be improved by mentioning whether the operation is idempotent or if there are rate limits.

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 two concise sentences, front-loaded with the purpose, and every sentence adds value. No unnecessary words.

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?

Given the tool's simplicity (1 parameter, no output schema, no annotations), the description covers the essential aspects: what it does, availability, and a critical caveat. It could explicitly mention that the tool returns the key, but the phrase 'the key is shown once' implies it.

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?

The input schema has 100% description coverage for the 'label' parameter, explaining its purpose. The description adds no additional meaning beyond the schema, so baseline score of 3 is appropriate.

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 states 'Create a new live API key,' identifying the resource (API key) and action (create). It distinguishes from siblings like 'list_api_keys' and 'revoke_api_key' by the action and the 'live' qualifier.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description notes that it is 'only available for active accounts,' providing some context for when to use it, but does not explicitly state when not to use it or mention alternatives like 'list_api_keys' for checking existing keys.

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

Each tool has a clearly distinct purpose: API key management, memory operations, account queries, and feedback submission are all separate concerns. No two tools overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with lowercase and underscores, e.g., create_api_key, list_keys, submit_feature_request. No mixing of conventions.

Tool Count5/5

15 tools cover all necessary operations for a storage service with account management: CRUD for data, API key lifecycle, account billing, and feedback. No tool is extraneous.

Completeness5/5

The tool set provides full CRUD for stored values, key management, account info, payment handling, and feedback. No obvious gaps: put_memory covers both create and update, and search_by_tag/top_memories fill retrieval needs.

Resources