아이디어 보드 결과 회수
get_board_results아이디어 보드의 현재 상태와 득표순 결과를 반환한다. 수렴이 끝난 회의의 우선순위 목록을 후속 업무로 넘길 때 사용.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| room_code | Yes |
get_board_results아이디어 보드의 현재 상태와 득표순 결과를 반환한다. 수렴이 끝난 회의의 우선순위 목록을 후속 업무로 넘길 때 사용.
| Name | Required | Description | Default |
|---|---|---|---|
| room_code | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full disclosure burden; it does reveal the shape of what is returned (current state plus vote-ranked results), which is useful. However it says nothing about read-only safety, access requirements for the room, or behavior when the board has not converged.
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?
Two sentences with zero waste: the purpose is front-loaded, followed immediately by the triggering scenario. Nothing is repeated or filler.
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 one-parameter getter with no output schema, the description covers what comes back at a high level. It still omits room_code semantics and access/prerequisite details, leaving gaps for an agent invoking it cold.
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 coverage is 0% and the single parameter room_code is never mentioned in the description. The name is largely self-explanatory, but no format, length, or sourcing guidance is offered to compensate for the empty schema description.
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+resource: returns the idea board's current state and vote-ranked results. It is distinguishable from the sibling run_idea_board (which executes the board) and get_meeting_report, though it does not name those siblings explicitly.
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?
Gives a concrete usage context: handing off the priority list of a converged meeting to follow-up work. It does not state when not to use it or name an alternative such as get_meeting_report, so routing is left partially to inference.
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.