spl_agent_key
Mint an agent API key (no password).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Mint an agent API key (no password).
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It conveys only that an agent API key is created without a password; it does not disclose expiry, return format, privileges, or side effects. This is minimal behavioral disclosure for a credential-minting operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. The essential qualifier '(no password)' earns its place by clarifying the authentication style.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no parameters and no output schema, there is little to document, making this a minimally viable description. However, it omits any mention of prerequisites or what the caller receives in return, so the overall context is thin.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters, so the description is not required to explain parameter details. The note '(no password)' usefully reinforces that no credential input is needed, matching the empty schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Mint') with a clear resource ('agent API key') and adds a clarifying qualifier ('no password'). It does not explicitly name or differentiate from sibling tools like spl_signup or spl_lab_auth, so it stops short of a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives such as spl_signup or spl_lab_auth. The parenthetical '(no password)' hints at a use case, but no explicit when-to-use or when-not-to-use guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Most tools are cleanly separated by entity prefix and action (_get vs _search), so AWARE/Box/etc are not easily confused. The main ambiguity is among spl_lab_auth, spl_agent_key, and spl_signup, which all relate to account/key creation and could cause misselection.
The 24 entity tools follow a consistent <entity>_get/<entity>_search pattern, which is predictable and readable. However, the five spl_* tools mix noun-style names like spl_catalog with verb-style names like spl_discover and spl_signup, creating a noticeable second convention.
At 29 tools, the server exceeds the comfortable 3-15 range and even the heavier 16-25 range. The 12 get/search pairs are systematic, but combined with the five spl_* tools the overall surface feels bloated and harder to scan.
For a retrieval-oriented knowledge server, every entity has both point lookup and free-text search, plus lab signup, agent key minting, and discovery/catalog resources. Minor gaps like no key revocation or list-all operations are not critical for the stated purpose.