workspaces.billing.envelopes.status
POST /v1/workspaces/:slug/billing/accounts/:accountId/envelopes/:envelopeId/status
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | ||
| query | No | ||
| pathParams | No |
POST /v1/workspaces/:slug/billing/accounts/:accountId/envelopes/:envelopeId/status
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | ||
| query | No | ||
| pathParams | No |
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 present, and the description does not disclose any behavioral traits (e.g., read-only, destructive action, side effects, authentication requirements). The endpoint string gives no insight into what happens when the tool is invoked.
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 extremely concise (one line) but at the expense of all useful information. It is not structured to communicate purpose or usage; it is merely a raw endpoint. Conciseness without informativeness is underspecification.
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?
For a tool with 3 complex parameters (nested objects), no output schema, and no annotations, the description is completely inadequate. It provides no context for an agent to understand what the tool does or how to invoke it correctly.
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?
Schema description coverage is 0% for 3 parameters (body, query, pathParams), and the description adds no information about them. The parameters are undefined objects with additionalProperties: true, so the agent has no clue what input is expected or how to structure the request.
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 is merely the HTTP endpoint string. It does not state what the tool does, what resource it operates on, or how it relates to billing envelopes. It fails to provide any verb or resource clarification beyond the name, making it missing/misleading.
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?
No usage guidance is provided. The description offers no context on when to use this tool versus siblings like workspaces.billing.envelopes.create or revoke. There is no mention of prerequisites, state, or alternatives.
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.
All 43 tools are clearly disambiguated by a hierarchical dot-separated naming scheme (e.g., workspaces.billing.accounts.create). Each tool targets a unique combination of resource and action, with no apparent overlap or ambiguity.
The naming follows a consistent <domain>.<subdomain>.<action> pattern, with actions as verbs (create, list, revoke, etc.). The use of underscores within the final component is uniform, making the pattern predictable across all tools.
At 43 tools, the server covers a broad scope (contracts, billing, workspaces, tasks, etc.), which justifies the high count. However, it is slightly above the typical well-scoped range of 3-15, risking overwhelm.
The tool set covers many operations for billing, tasks, and workspace management, but lacks fundamental create/update/delete for some core resources (e.g., no workspace.create or instruments.delete). Agents may encounter dead ends.