get_favorites
Retrieves all sessions you have marked as favorites from your Microsoft Ignite personal schedule.
Instructions
Get all sessions that you have marked as favorites
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Retrieves all sessions you have marked as favorites from your Microsoft Ignite personal schedule.
Get all sessions that you have marked as favorites
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v2025.0.2Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It conveys that the operation returns only favorited sessions, but it does not mention any additional behavior such as ordering, authentication requirements, or that it is a read-only 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 clear sentence with no redundant words. It front-loads the action and resource while staying immediately understandable.
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 zero-parameter, no-output-schema tool of low complexity, the description is largely complete. It identifies the resource and the criterion (favorites), though it could briefly state that no arguments are required or clarify the scope of 'you' relative to the current user.
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 tool has zero parameters and the schema coverage is 100%, so there is nothing for the description to explain. The baseline of 4 applies because no parameter documentation is needed.
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 'Get' and identifies a distinct resource: sessions marked as favorites. This clearly differentiates it from siblings like get_all_sessions and search_sessions based on the favorites filter.
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 implies the use case: retrieve sessions the current user has favorited. However, it does not explicitly state when to prefer this over get_all_sessions or search_sessions, nor does it mention exclusions or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.