What feature is being implemented in the MCP server to allow users to interact with specific tasks?	Support for slash commands (e.g., `/format`).
What is the primary goal of the prompts feature within an MCP server?	To expose a set of custom, high-quality, pre-tested prompts tailored to the server's specialization.
What is the specific function of the `/format` command in this example?	To instruct Claude to reformat the plain text content of a document into Markdown syntax.
Why is implementing a custom prompt beneficial, even if a user could achieve the same result manually?	The custom prompt ensures a much better, more reliable result because it is specifically tailored and evaluated for that task.
What syntax elements are used to define a prompt within the MCP server?	A prompt decorator, a name, and an optional description.
What does the prompt implementation function return when a client requests a prompt?	A list of messages (containing user and assistant messages) that are sent to the cloud.
Describe the workflow of the implemented `/format` prompt.	It takes a document ID, uses a tool to read the document contents, rewrites the content in Markdown, and then edits the document to save the changes.
