ready_to_answer
Present verified final solutions after obtaining independent expert review, ensuring accuracy and reliability in collaborative problem-solving workflows.
Instructions
Use this tool when you already obtained or verified the final solution with at least two independent experts and are ready to present your final answer.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/meta_prompt/server.py:107-115 (handler)The handler function for the 'ready_to_answer' tool. It is decorated with @mcp.tool() for registration and returns a string instructing to ask the user about the final answer presentation format.def ready_to_answer() -> str: """ Use this tool when you already obtained or verified the final solution with at least two independent experts and are ready to present your final answer. """ return ( "Now let's ask the user how they want you to present " "the final answer (as a report, implement the solution, etc.)." )