ready_to_answer
Present verified final solutions by collaborating with independent experts to ensure accuracy and readiness for sharing outcomes.
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:106-115 (handler)The handler function for the 'ready_to_answer' tool. It is decorated with @mcp.tool(), which registers it in the FastMCP server. The function returns a message prompting the meta-model to inquire about the user's preferred format for presenting the final answer.@mcp.tool() 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.)." )