hivelearn_get_assignment_submission
Fetch one assignment submission: text/url, status, instructor feedback and reviewer. Requires read:courses.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Submission uuid |
Fetch one assignment submission: text/url, status, instructor feedback and reviewer. Requires read:courses.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Submission uuid |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses the required permission (read:courses) and describes the response content (text/url, status, instructor feedback, reviewer). It does not mention error behavior, but for a read operation this is adequate.
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?
One sentence with no waste. The verb is front-loaded, the resource and returned fields are listed, and the permission is stated at the end.
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 simple fetch tool with one parameter and no output schema, the description covers the essential behavior: what it returns and what permission is needed. It could mention that the id is the submission id (already in schema) or that it returns a single object, but nothing critical is missing.
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 schema fully documents the single parameter 'id' with description 'Submission uuid', so the description adds no extra parameter guidance. With 100% schema coverage, the baseline is 3.
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?
States a specific verb ('Fetch'), a specific resource ('one assignment submission'), and enumerates the returned fields (text/url, status, instructor feedback, reviewer). It distinguishes itself from the sibling list_assignment_submissions (which fetches multiple) and grade_assignment_submission (which modifies).
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?
The description clearly implies this tool is for fetching a single submission by including 'one', and the sibling list tool is named differently. However, it does not explicitly state when to use this over list_assignment_submissions, nor does it mention alternatives. The context is clear but no exclusions are given.
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.