box_get
Box — one entry with notes and cross-links.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Box — one entry with notes and cross-links.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
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?
With no annotations, the description carries the full behavioral burden, but it only provides a noun phrase: 'one entry with notes and cross-links.' It doesn't state that it reads by ID, what happens on missing IDs, authorization needs, or the response structure.
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 fragment is short and front-loaded, with no fluff, but it is under-specified rather than efficiently complete. The concise one-sentence format earns some credit for structure.
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 one required parameter and no output schema or annotations, this description is too thin. It lacks an explicit statement of the operation, id semantics, and usage context relative to sibling tools.
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% and the description does not explain the required 'id' parameter. While the parameter name is conventional, the description adds no semantic detail about what kind of ID should be supplied.
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 identifies the resource (Box) and says the result is a single entry with notes and cross-links, but it never uses an operation verb like 'gets' or 'retrieves.' It relies on the tool name 'box_get' to carry the action, so the purpose is only vaguely stated.
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 guidance is given about when to call box_get versus box_search or the other get/search siblings. The singular phrasing weakly implies lookup by ID, but there is no explicit context or exclusion.
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.