Detalhe de professor
get_teacherDetalhe de um professor: bio completa, foto e lista dos cursos que ele leciona atualmente.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Slug do professor. Ex: 'ruy-jobim'. |
get_teacherDetalhe de um professor: bio completa, foto e lista dos cursos que ele leciona atualmente.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Slug do professor. Ex: 'ruy-jobim'. |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true and destructiveHint=false, so the safety profile is covered. The description adds useful content-level context (what fields are returned: bio, photo, courses), which matters since there is no output schema, but it says nothing about behavior on an invalid/unknown slug.
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 compact sentence that front-loads the entity and lists the returned contents with zero filler. Nothing is wasted.
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 single-parameter read tool with a rich annotation set, the description covers what is fetched and what is returned. It is only slightly incomplete in not addressing lookup failure, which is a minor gap given no output schema exists.
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 100% for the single slug parameter, and the schema already gives the format plus an example ('ruy-jobim'). The description adds no further meaning about the parameter, so the baseline 3 applies.
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 states a specific verb+resource: retrieving a single teacher's detail, and enumerates the payload (full bio, photo, current courses). It is clearly different from list_teachers by scope (single entity + detail), though it never names the sibling explicitly to make the contrast unambiguous.
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 statement of when to use this tool versus alternatives such as list_teachers or search, and no prerequisites beyond the required slug. Usage is only inferable from the name and the singular 'um professor' phrasing.
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.